在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 教学系统源码

教学系统源码

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:14.81M
  • 下载次数:17
  • 浏览次数:202
  • 发布时间:2021-12-05
  • 实例类别:PHP语言基础
  • 发 布 人:haolizixcv
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 教学 系统

实例介绍

【实例简介】教学系统源码


教学系统发布v1.2.0版本,新功能和Bug修复累计1项,增加课功能。
教学系统发布v1.2.0版本,增加了以下1个特性:
增加课功能,系统能力增强


【实例截图】from clipboardfrom clipboard
【核心代码】
.
├── install.html
├── readme.txt
├── wwwroot
│   ├── app
│   │   ├── Admin
│   │   │   ├── Controller
│   │   │   │   └── IndexController.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   └── routes.php
│   │   ├── Api
│   │   │   ├── Controller
│   │   │   │   ├── BaseController.php
│   │   │   │   ├── ConfigController.php
│   │   │   │   └── MemberProfileController.php
│   │   │   └── routes.php
│   │   ├── Console
│   │   │   ├── Commands
│   │   │   │   └── DumpDemoDataCommand.php
│   │   │   └── Kernel.php
│   │   ├── Constant
│   │   │   └── AppConstant.php
│   │   ├── Exceptions
│   │   │   └── Handler.php
│   │   ├── Http
│   │   │   └── Kernel.php
│   │   ├── Providers
│   │   │   ├── AppServiceProvider.php
│   │   │   └── RouteServiceProvider.php
│   │   └── Web
│   │       ├── Controller
│   │       │   ├── BaseController.php
│   │       │   ├── IndexController.php
│   │       │   ├── MemberController.php
│   │       │   └── MemberProfileController.php
│   │       └── routes.php
│   ├── artisan
│   ├── bootstrap
│   │   ├── app.php
│   │   ├── autoload.php
│   │   └── cache
│   ├── config
│   │   ├── app.php
│   │   ├── broadcasting.php
│   │   ├── cache.php
│   │   ├── captcha.php
│   │   ├── compile.php
│   │   ├── database.php
│   │   ├── filesystems.php
│   │   ├── mail.php
│   │   ├── module.php
│   │   ├── queue.php
│   │   ├── services.php
│   │   ├── session.php
│   │   └── view.php
│   ├── database
│   │   └── migrations
│   │       ├── 2015_12_22_213911_create_config.php
│   │       ├── 2015_12_22_215956_create_data.php
│   │       ├── 2015_12_22_215956_create_data_temp.php
│   │       ├── 2018_05_07_000000_modify_data_driver.php
│   │       ├── 2021_01_01_000000_create_admin.php
│   │       └── 2021_01_01_000000_create_admin_upload.php
│   ├── env.example
│   ├── license_url.txt
│   ├── module
│   │   ├── AdminManager
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── UpgradeController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── entry
│   │   │   │       └── upgrade.js
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       ├── 1.1.0.md
│   │   │   │       └── release.md
│   │   │   ├── Traits
│   │   │   │   └── AdminDashboardTrait.php
│   │   │   ├── Util
│   │   │   │   └── UpgradeUtil.php
│   │   │   ├── View
│   │   │   │   ├── admin
│   │   │   │   │   └── upgrade.blade.php
│   │   │   │   └── widget
│   │   │   │       └── serverInfo.blade.php
│   │   │   ├── Widget
│   │   │   │   └── ServerInfoWidget.php
│   │   │   └── config.json
│   │   ├── Article
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── ArticleController.php
│   │   │   │   └── routes.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   ├── Migrate
│   │   │   │   ├── 2017_01_01_000000_create_article.php
│   │   │   │   ├── 2017_01_01_000000_modify_article_add_sort.php
│   │   │   │   └── 2021_05_01_000000_modify_article_add_alias.php
│   │   │   ├── Type
│   │   │   │   └── ArticlePosition.php
│   │   │   ├── Util
│   │   │   │   └── ArticleUtil.php
│   │   │   ├── View
│   │   │   │   └── pc
│   │   │   │       └── article
│   │   │   │           ├── view.blade.php
│   │   │   │           └── viewPage.blade.php
│   │   │   ├── Web
│   │   │   │   ├── Controller
│   │   │   │   │   └── ArticleController.php
│   │   │   │   └── routes.php
│   │   │   └── config.json
│   │   ├── Banner
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── BannerController.php
│   │   │   │   └── routes.php
│   │   │   ├── Api
│   │   │   │   ├── Controller
│   │   │   │   │   └── BannerController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── style
│   │   │   │       └── banner.css
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   ├── Migrate
│   │   │   │   ├── 2017_01_01_000000_create_banner.php
│   │   │   │   ├── 2021_04_15_000000_modify_banner_add_type.php
│   │   │   │   └── 2021_08_16_000000_modify_banner_add_video.php
│   │   │   ├── Provider
│   │   │   │   ├── AbstractBannerPositionProvider.php
│   │   │   │   └── BannerPositionProvider.php
│   │   │   ├── Type
│   │   │   │   ├── BannerPosition.php
│   │   │   │   └── BannerType.php
│   │   │   ├── Util
│   │   │   │   └── BannerUtil.php
│   │   │   ├── View
│   │   │   │   └── pc
│   │   │   │       └── public
│   │   │   │           ├── banner.blade.php
│   │   │   │           └── bannerNav.blade.php
│   │   │   └── config.json
│   │   ├── CourseLive
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ConfigController.php
│   │   │   │   │   ├── CourseLiveCategoryController.php
│   │   │   │   │   ├── CourseLiveChapterController.php
│   │   │   │   │   ├── CourseLiveController.php
│   │   │   │   │   ├── CourseLiveFileController.php
│   │   │   │   │   ├── CourseLiveItemController.php
│   │   │   │   │   └── CourseLiveOrderController.php
│   │   │   │   └── routes.php
│   │   │   ├── Api
│   │   │   │   ├── Controller
│   │   │   │   │   └── CourseLiveController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── style
│   │   │   │       └── video.css
│   │   │   ├── Constant
│   │   │   │   └── CourseLiveConstant.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   ├── content.md
│   │   │   │   │   ├── demo.md
│   │   │   │   │   ├── mobilePreview.md
│   │   │   │   │   └── preview.md
│   │   │   │   └── release
│   │   │   │       └── 1.0.0.md
│   │   │   ├── Listener
│   │   │   │   └── CourseLivePayListener.php
│   │   │   ├── Migrate
│   │   │   │   ├── 2021_11_11_000000_create_course_live.php
│   │   │   │   ├── 2021_11_11_000000_create_course_live_category.php
│   │   │   │   └── 2021_11_11_000000_create_course_live_member.php
│   │   │   ├── Provider
│   │   │   │   └── OrderExpireScheduleProvider.php
│   │   │   ├── Type
│   │   │   │   ├── CourseLiveItemStatus.php
│   │   │   │   └── CourseLiveOrderStatus.php
│   │   │   ├── Util
│   │   │   │   ├── CourseLiveCategoryUtil.php
│   │   │   │   └── CourseLiveUtil.php
│   │   │   ├── View
│   │   │   │   ├── pc
│   │   │   │   │   └── courseLive
│   │   │   │   │       ├── buy.blade.php
│   │   │   │   │       ├── inc
│   │   │   │   │       │   └── records.blade.php
│   │   │   │   │       ├── list.blade.php
│   │   │   │   │       ├── member
│   │   │   │   │       │   └── item.blade.php
│   │   │   │   │       ├── show.blade.php
│   │   │   │   │       └── showItem.blade.php
│   │   │   │   └── share
│   │   │   │       └── recommends.blade.php
│   │   │   ├── Web
│   │   │   │   ├── Controller
│   │   │   │   │   ├── CourseLiveController.php
│   │   │   │   │   └── MemberCourseLiveController.php
│   │   │   │   └── routes.php
│   │   │   └── config.json
│   │   ├── CourseVideo
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ConfigController.php
│   │   │   │   │   ├── CourseVideoCategoryController.php
│   │   │   │   │   ├── CourseVideoChapterController.php
│   │   │   │   │   ├── CourseVideoController.php
│   │   │   │   │   ├── CourseVideoFileController.php
│   │   │   │   │   ├── CourseVideoItemController.php
│   │   │   │   │   └── CourseVideoOrderController.php
│   │   │   │   └── routes.php
│   │   │   ├── Api
│   │   │   │   ├── Controller
│   │   │   │   │   └── CourseVideoController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── style
│   │   │   │       └── video.css
│   │   │   ├── Constant
│   │   │   │   └── CourseVideoConstant.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   ├── content.md
│   │   │   │   │   ├── demo.md
│   │   │   │   │   ├── mobilePreview.md
│   │   │   │   │   └── preview.md
│   │   │   │   └── release
│   │   │   │       └── 1.0.0.md
│   │   │   ├── Listener
│   │   │   │   └── CourseVideoPayListener.php
│   │   │   ├── Migrate
│   │   │   │   ├── 2021_11_11_000000_create_course_video.php
│   │   │   │   ├── 2021_11_11_000000_create_course_video_category.php
│   │   │   │   └── 2021_11_11_000000_create_course_video_member.php
│   │   │   ├── Provider
│   │   │   │   └── OrderExpireScheduleProvider.php
│   │   │   ├── Type
│   │   │   │   └── CourseVideoOrderStatus.php
│   │   │   ├── Util
│   │   │   │   ├── CourseVideoCategoryUtil.php
│   │   │   │   └── CourseVideoUtil.php
│   │   │   ├── View
│   │   │   │   ├── pc
│   │   │   │   │   └── courseVideo
│   │   │   │   │       ├── buy.blade.php
│   │   │   │   │       ├── inc
│   │   │   │   │       │   └── records.blade.php
│   │   │   │   │       ├── list.blade.php
│   │   │   │   │       ├── member
│   │   │   │   │       │   └── item.blade.php
│   │   │   │   │       ├── show.blade.php
│   │   │   │   │       └── showItem.blade.php
│   │   │   │   └── share
│   │   │   │       └── recommends.blade.php
│   │   │   ├── Web
│   │   │   │   ├── Controller
│   │   │   │   │   ├── CourseVideoController.php
│   │   │   │   │   └── MemberCourseVideoController.php
│   │   │   │   └── routes.php
│   │   │   └── config.json
│   │   ├── Member
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ConfigController.php
│   │   │   │   │   ├── MemberController.php
│   │   │   │   │   ├── MemberDashboardController.php
│   │   │   │   │   ├── MemberGroupController.php
│   │   │   │   │   ├── MemberMoneyCashController.php
│   │   │   │   │   ├── MemberSelectController.php
│   │   │   │   │   ├── MemberVipOrderController.php
│   │   │   │   │   └── MemberVipSetController.php
│   │   │   │   └── routes.php
│   │   │   ├── Api
│   │   │   │   ├── Controller
│   │   │   │   │   ├── AuthController.php
│   │   │   │   │   ├── MemberAddressController.php
│   │   │   │   │   ├── MemberCreditController.php
│   │   │   │   │   ├── MemberDataController.php
│   │   │   │   │   ├── MemberFavoriteController.php
│   │   │   │   │   ├── MemberMessageController.php
│   │   │   │   │   ├── MemberMoneyCashController.php
│   │   │   │   │   ├── MemberMoneyController.php
│   │   │   │   │   ├── MemberProfileController.php
│   │   │   │   │   └── MemberVipController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── style
│   │   │   │       └── member.css
│   │   │   ├── Auth
│   │   │   │   ├── MemberUser.php
│   │   │   │   └── MemberVip.php
│   │   │   ├── Config
│   │   │   │   ├── MemberHomeIcon.php
│   │   │   │   ├── MemberMenu.php
│   │   │   │   └── MemberOauth.php
│   │   │   ├── Constant
│   │   │   │   └── PayConstant.php
│   │   │   ├── Converter
│   │   │   │   └── AtMemberHtmlInterceptor.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       ├── 1.1.0.md
│   │   │   │       ├── 1.2.0.md
│   │   │   │       ├── 1.3.0.md
│   │   │   │       ├── 1.4.0.md
│   │   │   │       ├── 1.5.0.md
│   │   │   │       ├── 1.6.0.md
│   │   │   │       ├── 1.6.1.md
│   │   │   │       └── 1.7.0.md
│   │   │   ├── Events
│   │   │   │   ├── MemberUserLoginedEvent.php
│   │   │   │   ├── MemberUserPasswordResetedEvent.php
│   │   │   │   ├── MemberUserRegisteredEvent.php
│   │   │   │   └── MemberUserUpdatedEvent.php
│   │   │   ├── Field
│   │   │   │   └── AutoRenderedMemberUsersField.php
│   │   │   ├── Listener
│   │   │   │   └── MemberVipPayListener.php
│   │   │   ├── Middleware
│   │   │   │   ├── ApiAuthMiddleware.php
│   │   │   │   └── WebAuthMiddleware.php
│   │   │   ├── Migrate
│   │   │   │   ├── 2015_12_22_221028_create_member_user.php
│   │   │   │   ├── 2016_05_29_000000_create_member_message.php
│   │   │   │   ├── 2016_07_22_000000_create_member_favorite.php
│   │   │   │   ├── 2016_07_22_000000_create_member_oauth.php
│   │   │   │   ├── 2016_11_11_000000_create_member_upload.php
│   │   │   │   ├── 2017_01_01_000000_create_member_address.php
│   │   │   │   ├── 2017_07_07_000000_create_member_money_cash.php
│   │   │   │   ├── 2017_12_18_000000_create_member_money.php
│   │   │   │   ├── 2017_12_18_000000_create_member_money_log.php
│   │   │   │   ├── 2017_12_27_000000_create_member_credit.php
│   │   │   │   ├── 2017_12_27_000000_create_member_credit_log.php
│   │   │   │   ├── 2019_01_01_000000_create_member_upload_category.php
│   │   │   │   ├── 2020_05_14_000000_create_member_vip.php
│   │   │   │   ├── 2020_05_14_000000_create_member_vip_order.php
│   │   │   │   ├── 2021_06_01_000000_create_member_address_user_id_fix.php
│   │   │   │   ├── 2021_07_31_221028_modify_member_user_add_nickname.php
│   │   │   │   ├── 2021_08_11_000000_modify_member_user_add_status.php
│   │   │   │   ├── 2021_11_02_000001_create_member_group.php
│   │   │   │   ├── 2021_11_04_000000_modify_member_oauth_add_info.php
│   │   │   │   └── 2021_11_14_000000_modify_member_group_add_show_front.php
│   │   │   ├── Oauth
│   │   │   │   └── AbstractOauth.php
│   │   │   ├── Provider
│   │   │   │   ├── RegisterProcessor
│   │   │   │   │   ├── AbstractMemberRegisterProcessorProvider.php
│   │   │   │   │   └── MemberRegisterProcessorProvider.php
│   │   │   │   └── VerifySmsTemplateProvider.php
│   │   │   ├── Support
│   │   │   │   └── MemberLoginCheck.php
│   │   │   ├── Type
│   │   │   │   ├── Education.php
│   │   │   │   ├── Gender.php
│   │   │   │   ├── MarriageStatus.php
│   │   │   │   ├── MemberMessageStatus.php
│   │   │   │   ├── MemberMoneyCashStatus.php
│   │   │   │   ├── MemberMoneyCashType.php
│   │   │   │   ├── MemberMoneyChargeStatus.php
│   │   │   │   ├── MemberStatus.php
│   │   │   │   ├── WorkIndustry.php
│   │   │   │   ├── WorkPosition.php
│   │   │   │   └── WorkSalary.php
│   │   │   ├── Util
│   │   │   │   ├── MemberAddressUtil.php
│   │   │   │   ├── MemberCmsUtil.php
│   │   │   │   ├── MemberCreditUtil.php
│   │   │   │   ├── MemberFavoriteUtil.php
│   │   │   │   ├── MemberFieldUtil.php
│   │   │   │   ├── MemberGroupUtil.php
│   │   │   │   ├── MemberMessageUtil.php
│   │   │   │   ├── MemberMoneyUtil.php
│   │   │   │   ├── MemberUtil.php
│   │   │   │   └── MemberVipUtil.php
│   │   │   ├── View
│   │   │   │   ├── field
│   │   │   │   │   └── memberUsers.blade.php
│   │   │   │   └── pc
│   │   │   │       ├── login.blade.php
│   │   │   │       ├── member
│   │   │   │       │   ├── agreement.blade.php
│   │   │   │       │   └── index.blade.php
│   │   │   │       ├── memberAddress
│   │   │   │       │   ├── index.blade.php
│   │   │   │       │   └── item.blade.php
│   │   │   │       ├── memberCredit
│   │   │   │       │   ├── index.blade.php
│   │   │   │       │   └── item.blade.php
│   │   │   │       ├── memberData
│   │   │   │       │   └── fileManager.blade.php
│   │   │   │       ├── memberMoney
│   │   │   │       │   ├── index.blade.php
│   │   │   │       │   └── item.blade.php
│   │   │   │       ├── memberMoneyCash
│   │   │   │       │   ├── index.blade.php
│   │   │   │       │   ├── log.blade.php
│   │   │   │       │   └── logItem.blade.php
│   │   │   │       ├── memberProfile
│   │   │   │       │   ├── avatar.blade.php
│   │   │   │       │   ├── bindNav.blade.php
│   │   │   │       │   ├── email.blade.php
│   │   │   │       │   ├── oauth.blade.php
│   │   │   │       │   └── phone.blade.php
│   │   │   │       ├── memberVip
│   │   │   │       │   └── index.blade.php
│   │   │   │       ├── oauthBind.blade.php
│   │   │   │       ├── oauthButtons.blade.php
│   │   │   │       ├── oauthProxy.blade.php
│   │   │   │       ├── register.blade.php
│   │   │   │       ├── retrieve.blade.php
│   │   │   │       ├── retrieveEmail.blade.php
│   │   │   │       ├── retrievePhone.blade.php
│   │   │   │       └── retrieveReset.blade.php
│   │   │   ├── Web
│   │   │   │   ├── Controller
│   │   │   │   │   ├── AuthController.php
│   │   │   │   │   ├── MemberAddressController.php
│   │   │   │   │   ├── MemberController.php
│   │   │   │   │   ├── MemberCreditController.php
│   │   │   │   │   ├── MemberDataController.php
│   │   │   │   │   ├── MemberFrameController.php
│   │   │   │   │   ├── MemberMessageController.php
│   │   │   │   │   ├── MemberMoneyCashController.php
│   │   │   │   │   ├── MemberMoneyController.php
│   │   │   │   │   ├── MemberProfileController.php
│   │   │   │   │   ├── MemberVipController.php
│   │   │   │   │   ├── PageController.php
│   │   │   │   │   └── memberMessage.js
│   │   │   │   └── routes.php
│   │   │   ├── Widget
│   │   │   │   └── Field
│   │   │   │       ├── AdminMemberInfo.php
│   │   │   │       └── MemberImage.php
│   │   │   └── config.json
│   │   ├── ModuleStore
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── ModuleStoreController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── entry
│   │   │   │       └── moduleStore.js
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       ├── 1.1.0.md
│   │   │   │       └── 1.2.0.md
│   │   │   ├── Util
│   │   │   │   └── ModuleStoreUtil.php
│   │   │   ├── View
│   │   │   │   └── admin
│   │   │   │       └── moduleStore
│   │   │   │           └── index.blade.php
│   │   │   └── config.json
│   │   ├── Nav
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── NavController.php
│   │   │   │   └── routes.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   ├── Migrate
│   │   │   │   ├── 2017_01_01_000000_create_nav.php
│   │   │   │   └── 2021_09_17_000000_modify_nav_add_open_type.php
│   │   │   ├── Type
│   │   │   │   ├── NavLink.php
│   │   │   │   ├── NavOpenType.php
│   │   │   │   └── NavPosition.php
│   │   │   ├── Util
│   │   │   │   └── NavUtil.php
│   │   │   └── config.json
│   │   ├── Partner
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── PartnerController.php
│   │   │   │   └── routes.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   ├── Migrate
│   │   │   │   └── 2016_07_23_000000_create_partner.php
│   │   │   ├── Provider
│   │   │   │   ├── AbstractPartnerPositionProvider.php
│   │   │   │   └── PartnerPositionProvider.php
│   │   │   ├── Type
│   │   │   │   └── PartnerPosition.php
│   │   │   ├── Util
│   │   │   │   └── PartnerUtil.php
│   │   │   ├── View
│   │   │   │   └── pc
│   │   │   │       └── public
│   │   │   │           ├── partner.blade.php
│   │   │   │           ├── partnerRaw.blade.php
│   │   │   │           └── partnerTransparent.blade.php
│   │   │   └── config.json
│   │   ├── PayCenter
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ConfigController.php
│   │   │   │   │   └── PayOrderController.php
│   │   │   │   └── routes.php
│   │   │   ├── Api
│   │   │   │   ├── Controller
│   │   │   │   │   └── PayController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── entry
│   │   │   │       └── pay.js
│   │   │   ├── Command
│   │   │   │   └── PayOrderExpireCheckCommand.php
│   │   │   ├── Config
│   │   │   │   └── pay.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   ├── content.md
│   │   │   │   │   ├── mobilePreview.md
│   │   │   │   │   └── preview.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   ├── Events
│   │   │   │   ├── OrderExpiredEvent.php
│   │   │   │   └── OrderPayedEvent.php
│   │   │   ├── Listeners
│   │   │   │   └── PayListener.php
│   │   │   ├── Migrate
│   │   │   │   ├── 2016_11_24_000000_create_pay_order.php
│   │   │   │   └── 2021_05_24_000001_modify_pay_order_add_detail.php
│   │   │   ├── SDK
│   │   │   │   └── alipay
│   │   │   │       ├── readme.md
│   │   │   │       └── src
│   │   │   │           ├── Latrell
│   │   │   │           │   └── Alipay
│   │   │   │           │       ├── AlipayServiceProvider.php
│   │   │   │           │       ├── Facades
│   │   │   │           │       │   ├── AlipayMobile.php
│   │   │   │           │       │   └── AlipayWeb.php
│   │   │   │           │       ├── Mobile
│   │   │   │           │       │   └── SdkPayment.php
│   │   │   │           │       ├── Wap
│   │   │   │           │       │   └── SdkPayment.php
│   │   │   │           │       └── Web
│   │   │   │           │           └── SdkPayment.php
│   │   │   │           └── config
│   │   │   │               ├── config.php
│   │   │   │               ├── key
│   │   │   │               │   ├── private_key.pem
│   │   │   │               │   └── public_key.pem
│   │   │   │               ├── mobile.php
│   │   │   │               └── web.php
│   │   │   ├── Traits
│   │   │   │   └── PayCenterPerformTrait.php
│   │   │   ├── Type
│   │   │   │   ├── PayOrderStatus.php
│   │   │   │   └── PayType.php
│   │   │   ├── Util
│   │   │   │   ├── PayOrderUtil.php
│   │   │   │   └── PayUtil.php
│   │   │   ├── View
│   │   │   │   └── pc
│   │   │   │       └── pay
│   │   │   │           └── index.blade.php
│   │   │   ├── Web
│   │   │   │   ├── Controller
│   │   │   │   │   ├── NotifyController.php
│   │   │   │   │   ├── PayController.php
│   │   │   │   │   └── ReturnController.php
│   │   │   │   └── routes.php
│   │   │   └── config.json
│   │   ├── Site
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── ConfigController.php
│   │   │   │   └── routes.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       ├── 1.0.0.md
│   │   │   │       └── 1.1.0.md
│   │   │   └── config.json
│   │   ├── SiteCounter
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── ConfigController.php
│   │   │   │   └── routes.php
│   │   │   ├── Core
│   │   │   │   └── ModuleServiceProvider.php
│   │   │   ├── Docs
│   │   │   │   ├── module
│   │   │   │   │   └── content.md
│   │   │   │   └── release
│   │   │   │       └── 1.0.0.md
│   │   │   └── config.json
│   │   ├── Tecmz
│   │   │   ├── Admin
│   │   │   │   ├── Controller
│   │   │   │   │   └── UpgradeController.php
│   │   │   │   └── routes.php
│   │   │   ├── Asset
│   │   │   │   └── entry
│   │   │   │       ├── upgrade.js
│   │   │   │       └── versionCheck.js
│   │   │   ├── Docs
│   │   │   │   └── release
│   │   │   │       └── 1.0.0.md
│   │   │   ├── Traits
│   │   │   │   └── AdminDashboardTrait.php
│   │   │   ├── Util
│   │   │   │   └── UpgradeUtil.php
│   │   │   ├── View
│   │   │   │   ├── admin
│   │   │   │   │   └── upgrade.blade.php
│   │   │   │   └── widget
│   │   │   │       └── copyright.blade.php
│   │   │   ├── Widget
│   │   │   │   └── CopyrightWidget.php
│   │   │   └── config.json
│   │   └── Vendor
│   │       ├── Admin
│   │       │   ├── Config
│   │       │   │   ├── AdminWidgetDashboard.php
│   │       │   │   └── AdminWidgetLink.php
│   │       │   ├── Controller
│   │       │   │   ├── WidgetIconController.php
│   │       │   │   └── WidgetLinkController.php
│   │       │   └── routes.php
│   │       ├── Api
│   │       │   └── routes.php
│   │       ├── Asset
│   │       │   └── asset
│   │       │       ├── toggle.css
│   │       │       └── toggle.js
│   │       ├── Atomic
│   │       │   └── AtomicUtil.php
│   │       ├── Cache
│   │       │   └── CacheUtil.php
│   │       ├── Captcha
│   │       │   ├── AbstractCaptchaProvider.php
│   │       │   ├── CaptchaUtil.php
│   │       │   └── DefaultCaptchaProvider.php
│   │       ├── Command
│   │       │   └── BaseDumpDemoDataCommand.php
│   │       ├── Docs
│   │       │   ├── module
│   │       │   │   └── content.md
│   │       │   └── release
│   │       │       ├── 1.0.0.md
│   │       │       ├── 1.1.0.md
│   │       │       ├── 1.2.0.md
│   │       │       ├── 1.4.0.md
│   │       │       ├── 1.5.0.md
│   │       │       ├── 1.6.0.md
│   │       │       ├── 1.7.0.md
│   │       │       ├── 1.8.0.md
│   │       │       └── 1.9.0.md
│   │       ├── ES
│   │       │   └── ESBaseUtil.php
│   │       ├── Email
│   │       │   ├── AbstractEmailSender.php
│   │       │   └── MailSendJob.php
│   │       ├── Html
│   │       │   ├── HtmlConvertUtil.php
│   │       │   ├── HtmlConverter.php
│   │       │   ├── HtmlConverterInterceptor.php
│   │       │   ├── HtmlType.php
│   │       │   └── SimpleEmotionConverterInterceptor.php
│   │       ├── Installer
│   │       │   ├── Util
│   │       │   │   └── InstallerUtil.php
│   │       │   ├── function.php
│   │       │   └── install.php
│   │       ├── LazyValue
│   │       │   ├── LazyValueJob.php
│   │       │   ├── LazyValueProcessor.php
│   │       │   └── LazyValueUtil.php
│   │       ├── Log
│   │       │   └── Logger.php
│   │       ├── Markdown
│   │       │   ├── MarkConverter.php
│   │       │   └── MarkdownUtil.php
│   │       ├── Middleware
│   │       │   └── StatelessRouteMiddleware.php
│   │       ├── Migrate
│   │       │   ├── 2018_10_24_000000_create_lazy_value.php
│   │       │   └── 2020_01_00_000000_create_atomic.php
│   │       ├── Oauth
│   │       │   └── OauthType.php
│   │       ├── Provider
│   │       │   ├── Captcha
│   │       │   │   ├── AbstractCaptchaProvider.php
│   │       │   │   ├── CaptchaProvider.php
│   │       │   │   └── DefaultCaptchaProvider.php
│   │       │   ├── HomePage
│   │       │   │   ├── AbstractHomePageProvider.php
│   │       │   │   ├── DefaultHomePageProvider.php
│   │       │   │   └── HomePageProvider.php
│   │       │   ├── MailSender
│   │       │   │   ├── AbstractMailSenderProvider.php
│   │       │   │   └── MailSenderProvider.php
│   │       │   ├── Notifier
│   │       │   │   ├── AbstractNotifierProvider.php
│   │       │   │   ├── DefaultNotifierProvider.php
│   │       │   │   ├── NotifierBizWidget.php
│   │       │   │   └── NotifierProvider.php
│   │       │   ├── ProviderTrait.php
│   │       │   ├── RandomImage
│   │       │   │   ├── AbstractRandomImageProvider.php
│   │       │   │   ├── DefaultRandomImageProvider.php
│   │       │   │   └── RandomImageProvider.php
│   │       │   ├── RichContent
│   │       │   │   ├── AbstractRichContentProvider.php
│   │       │   │   ├── RichContentProvider.php
│   │       │   │   ├── RichContentProviderType.php
│   │       │   │   └── UEditorRichContentProvider.php
│   │       │   ├── Schedule
│   │       │   │   ├── AbstractScheduleProvider.php
│   │       │   │   └── ScheduleProvider.php
│   │       │   ├── SiteTemplate
│   │       │   │   ├── AbstractSiteTemplateProvider.php
│   │       │   │   ├── DefaultSiteTemplateProvider.php
│   │       │   │   └── SiteTemplateProvider.php
│   │       │   ├── SiteUrl
│   │       │   │   ├── AbstractSiteUrlProvider.php
│   │       │   │   └── SiteUrlProvider.php
│   │       │   ├── SmsSender
│   │       │   │   ├── AbstractSmsSenderProvider.php
│   │       │   │   └── SmsSenderProvider.php
│   │       │   └── SmsTemplate
│   │       │       ├── AbstractSmsTemplateProvider.php
│   │       │       └── SmsTemplateProvider.php
│   │       ├── Recycle
│   │       │   ├── RecycleUtil.php
│   │       │   └── TenantRecycleUtil.php
│   │       ├── SDK
│   │       │   ├── CacheTrait.php
│   │       │   └── HttpRequest.php
│   │       ├── Session
│   │       │   └── SessionUtil.php
│   │       ├── Shell
│   │       │   └── include.php
│   │       ├── Sms
│   │       │   ├── AbstractSmsSender.php
│   │       │   └── SmsUtil.php
│   │       ├── Support
│   │       │   └── ResponseCodes.php
│   │       ├── Tecmz
│   │       │   ├── Tecmz.php
│   │       │   ├── TecmzUtil.php
│   │       │   └── Type
│   │       │       └── ExpressCompany.php
│   │       ├── Type
│   │       │   └── OrderStatus.php
│   │       ├── View
│   │       │   ├── mail
│   │       │   │   ├── frame.blade.php
│   │       │   │   └── verify.blade.php
│   │       │   ├── pc
│   │       │   │   └── dialogFrame.blade.php
│   │       │   ├── public
│   │       │   │   └── shareButtons.blade.php
│   │       │   └── widget
│   │       │       ├── captcha
│   │       │       │   └── default.blade.php
│   │       │       └── richContent
│   │       │           └── htmlUeditor.blade.php
│   │       ├── Web
│   │       │   ├── Controller
│   │       │   │   ├── CaptchaController.php
│   │       │   │   ├── InstallController.php
│   │       │   │   └── PlaceholderController.php
│   │       │   └── routes.php
│   │       └── config.json
│   ├── public
│   │   ├── asset
│   │   │   ├── 8fbe5401aaf59676ae94a5ef9a42ad7b.eot
│   │   │   ├── common
│   │   │   │   ├── admin.js
│   │   │   │   ├── base.js
│   │   │   │   ├── clipboard.js
│   │   │   │   ├── commonVerify.js
│   │   │   │   ├── editor.js
│   │   │   │   ├── editorMarkdown.js
│   │   │   │   ├── fullscreen.js
│   │   │   │   ├── lazyLoad.js
│   │   │   │   ├── multiSelector.js
│   │   │   │   ├── photoswipe.js
│   │   │   │   ├── qrcode.js
│   │   │   │   ├── share.js
│   │   │   │   ├── timeago.js
│   │   │   │   └── uploadButton.js
│   │   │   ├── eff561633a9ebc64f171aa295a58e887.svg
│   │   │   ├── entry
│   │   │   │   ├── basic.js
│   │   │   │   ├── dataFileManager.js
│   │   │   │   └── dialogLinkSelector.js
│   │   │   ├── f64c3af3d0d25b9e4e003a8c03e4f70a.svg
│   │   │   ├── font-awesome
│   │   │   │   ├── css
│   │   │   │   │   └── font-awesome.min.css
│   │   │   │   ├── data.json
│   │   │   │   └── fonts
│   │   │   │       ├── FontAwesome.otf
│   │   │   │       ├── fontawesome-webfont.eot
│   │   │   │       ├── fontawesome-webfont.svg
│   │   │   │       ├── fontawesome-webfont.ttf
│   │   │   │       ├── fontawesome-webfont.woff
│   │   │   │       └── fontawesome-webfont.woff2
│   │   │   ├── image
│   │   │   │   ├── avatar.png
│   │   │   │   ├── emotion
│   │   │   │   │   ├── 01@2x.png
│   │   │   │   │   ├── 02@2x.png
│   │   │   │   │   ├── 03@2x.png
│   │   │   │   │   ├── 04@2x.png
│   │   │   │   │   ├── 05@2x.png
│   │   │   │   │   ├── 06@2x.png
│   │   │   │   │   ├── 07@2x.png
│   │   │   │   │   ├── 08@2x.png
│   │   │   │   │   ├── 09@2x.png
│   │   │   │   │   ├── 100@2x.png
│   │   │   │   │   ├── 101@2x.png
│   │   │   │   │   ├── 102@2x.png
│   │   │   │   │   ├── 103@2x.png
│   │   │   │   │   ├── 104@2x.png
│   │   │   │   │   ├── 105@2x.png
│   │   │   │   │   ├── 10@2x.png
│   │   │   │   │   ├── 11@2x.png
│   │   │   │   │   ├── 12@2x.png
│   │   │   │   │   ├── 13@2x.png
│   │   │   │   │   ├── 14@2x.png
│   │   │   │   │   ├── 15@2x.png
│   │   │   │   │   ├── 16@2x.png
│   │   │   │   │   ├── 17@2x.png
│   │   │   │   │   ├── 18@2x.png
│   │   │   │   │   ├── 19@2x.png
│   │   │   │   │   ├── 20@2x.png
│   │   │   │   │   ├── 21@2x.png
│   │   │   │   │   ├── 22@2x.png
│   │   │   │   │   ├── 23@2x.png
│   │   │   │   │   ├── 24@2x.png
│   │   │   │   │   ├── 25@2x.png
│   │   │   │   │   ├── 26@2x.png
│   │   │   │   │   ├── 27@2x.png
│   │   │   │   │   ├── 28@2x.png
│   │   │   │   │   ├── 29@2x.png
│   │   │   │   │   ├── 30@2x.png
│   │   │   │   │   ├── 31@2x.png
│   │   │   │   │   ├── 32@2x.png
│   │   │   │   │   ├── 33@2x.png
│   │   │   │   │   ├── 34@2x.png
│   │   │   │   │   ├── 35@2x.png
│   │   │   │   │   ├── 36@2x.png
│   │   │   │   │   ├── 37@2x.png
│   │   │   │   │   ├── 38@2x.png
│   │   │   │   │   ├── 39@2x.png
│   │   │   │   │   ├── 40@2x.png
│   │   │   │   │   ├── 41@2x.png
│   │   │   │   │   ├── 42@2x.png
│   │   │   │   │   ├── 43@2x.png
│   │   │   │   │   ├── 44@2x.png
│   │   │   │   │   ├── 45@2x.png
│   │   │   │   │   ├── 46@2x.png
│   │   │   │   │   ├── 47@2x.png
│   │   │   │   │   ├── 48@2x.png
│   │   │   │   │   ├── 49@2x.png
│   │   │   │   │   ├── 50@2x.png
│   │   │   │   │   ├── 51@2x.png
│   │   │   │   │   ├── 52@2x.png
│   │   │   │   │   ├── 53@2x.png
│   │   │   │   │   ├── 54@2x.png
│   │   │   │   │   ├── 55@2x.png
│   │   │   │   │   ├── 56@2x.png
│   │   │   │   │   ├── 57@2x.png
│   │   │   │   │   ├── 58@2x.png
│   │   │   │   │   ├── 59@2x.png
│   │   │   │   │   ├── 60@2x.png
│   │   │   │   │   ├── 61@2x.png
│   │   │   │   │   ├── 62@2x.png
│   │   │   │   │   ├── 63@2x.png
│   │   │   │   │   ├── 64@2x.png
│   │   │   │   │   ├── 65@2x.png
│   │   │   │   │   ├── 66@2x.png
│   │   │   │   │   ├── 67@2x.png
│   │   │   │   │   ├── 68@2x.png
│   │   │   │   │   ├── 69@2x.png
│   │   │   │   │   ├── 70@2x.png
│   │   │   │   │   ├── 71@2x.png
│   │   │   │   │   ├── 72@2x.png
│   │   │   │   │   ├── 73@2x.png
│   │   │   │   │   ├── 74@2x.png
│   │   │   │   │   ├── 75@2x.png
│   │   │   │   │   ├── 76@2x.png
│   │   │   │   │   ├── 77@2x.png
│   │   │   │   │   ├── 78@2x.png
│   │   │   │   │   ├── 79@2x.png
│   │   │   │   │   ├── 80@2x.png
│   │   │   │   │   ├── 81@2x.png
│   │   │   │   │   ├── 82@2x.png
│   │   │   │   │   ├── 83@2x.png
│   │   │   │   │   ├── 84@2x.png
│   │   │   │   │   ├── 85@2x.png
│   │   │   │   │   ├── 86@2x.png
│   │   │   │   │   ├── 87@2x.png
│   │   │   │   │   ├── 88@2x.png
│   │   │   │   │   ├── 89@2x.png
│   │   │   │   │   ├── 90@2x.png
│   │   │   │   │   ├── 91@2x.png
│   │   │   │   │   ├── 92@2x.png
│   │   │   │   │   ├── 93@2x.png
│   │   │   │   │   ├── 94@2x.png
│   │   │   │   │   ├── 95@2x.png
│   │   │   │   │   ├── 96@2x.png
│   │   │   │   │   ├── 97@2x.png
│   │   │   │   │   ├── 98@2x.png
│   │   │   │   │   └── 99@2x.png
│   │   │   │   ├── none.png
│   │   │   │   └── pay
│   │   │   │       ├── alipay.jpg
│   │   │   │       ├── alipay_pay.png
│   │   │   │       ├── offline_pay.png
│   │   │   │       ├── wechat.jpg
│   │   │   │       └── wechat_pay.png
│   │   │   ├── layui
│   │   │   │   ├── css
│   │   │   │   │   ├── layui.css
│   │   │   │   │   ├── layui.mobile.css
│   │   │   │   │   └── modules
│   │   │   │   │       ├── code.css
│   │   │   │   │       ├── laydate
│   │   │   │   │       │   └── default
│   │   │   │   │       │       └── laydate.css
│   │   │   │   │       └── layer
│   │   │   │   │           └── default
│   │   │   │   │               ├── icon-ext.png
│   │   │   │   │               ├── icon.png
│   │   │   │   │               ├── layer.css
│   │   │   │   │               ├── loading-0.gif
│   │   │   │   │               ├── loading-1.gif
│   │   │   │   │               └── loading-2.gif
│   │   │   │   ├── font
│   │   │   │   │   ├── iconfont.eot
│   │   │   │   │   ├── iconfont.svg
│   │   │   │   │   ├── iconfont.ttf
│   │   │   │   │   ├── iconfont.woff
│   │   │   │   │   └── iconfont.woff2
│   │   │   │   ├── lay
│   │   │   │   │   └── modules
│   │   │   │   │       ├── carousel.js
│   │   │   │   │       ├── code.js
│   │   │   │   │       ├── colorpicker.js
│   │   │   │   │       ├── element.js
│   │   │   │   │       ├── flow.js
│   │   │   │   │       ├── form.js
│   │   │   │   │       ├── jquery.js
│   │   │   │   │       ├── laydate.js
│   │   │   │   │       ├── layer.js
│   │   │   │   │       ├── laypage.js
│   │   │   │   │       ├── laytpl.js
│   │   │   │   │       ├── mobile.js
│   │   │   │   │       ├── rate.js
│   │   │   │   │       ├── slider.js
│   │   │   │   │       ├── table.js
│   │   │   │   │       ├── transfer.js
│   │   │   │   │       ├── tree.js
│   │   │   │   │       ├── upload.js
│   │   │   │   │       └── util.js
│   │   │   │   └── layui.js
│   │   │   ├── sprites
│   │   │   │   └── 76ac4c2d9120b0b4f88365fe6b38038d.png
│   │   │   ├── theme
│   │   │   │   └── default
│   │   │   │       ├── admin.css
│   │   │   │       ├── base.css
│   │   │   │       └── style.css
│   │   │   └── vendor
│   │   │       ├── clipboard
│   │   │       │   ├── clipboard.js
│   │   │       │   └── clipboard.swf
│   │   │       ├── cropper
│   │   │       │   ├── cropper.css
│   │   │       │   └── cropper.js
│   │   │       ├── docsify
│   │   │       │   ├── docsify.min.js
│   │   │       │   ├── search.min.js
│   │   │       │   └── vue.css
│   │   │       ├── echarts
│   │   │       │   ├── echarts.all.js
│   │   │       │   └── vue-echarts.js
│   │   │       ├── element-ui
│   │   │       │   ├── fonts
│   │   │       │   │   ├── element-icons.ttf
│   │   │       │   │   └── element-icons.woff
│   │   │       │   ├── index.css
│   │   │       │   └── index.js
│   │   │       ├── html2canvas.js
│   │   │       ├── iconfont
│   │   │       │   ├── iconfont.css
│   │   │       │   ├── iconfont.json
│   │   │       │   ├── iconfont.ttf
│   │   │       │   ├── iconfont.woff
│   │   │       │   └── iconfont.woff2
│   │   │       ├── imagesloaded.js
│   │   │       ├── infiniteScroller.js
│   │   │       ├── jquery.js
│   │   │       ├── jqueryEasing.js
│   │   │       ├── jqueryLazyload.js
│   │   │       ├── jqueryMark.js
│   │   │       ├── jqueryRotateCss.js
│   │   │       ├── masonry.js
│   │   │       ├── photoswipe
│   │   │       │   ├── default-skin
│   │   │       │   │   ├── default-skin.css
│   │   │       │   │   ├── default-skin.png
│   │   │       │   │   ├── default-skin.svg
│   │   │       │   │   └── preloader.gif
│   │   │       │   ├── photoswipe-ui-default.js
│   │   │       │   ├── photoswipe.css
│   │   │       │   ├── photoswipe.js
│   │   │       │   └── template.html
│   │   │       ├── simplemde
│   │   │       │   ├── simplemde.css
│   │   │       │   └── simplemde.js
│   │   │       ├── swiper
│   │   │       │   ├── swiper.css
│   │   │       │   └── swiper.js
│   │   │       ├── tagify
│   │   │       │   ├── jQuery.tagify.min.js
│   │   │       │   └── tagify.css
│   │   │       ├── ueditor
│   │   │       │   ├── dialogs
│   │   │       │   │   ├── anchor
│   │   │       │   │   │   └── anchor.html
│   │   │       │   │   ├── attachment
│   │   │       │   │   │   ├── attachment.css
│   │   │       │   │   │   ├── attachment.html
│   │   │       │   │   │   ├── attachment.js
│   │   │       │   │   │   ├── fileTypeImages
│   │   │       │   │   │   │   ├── icon_chm.gif
│   │   │       │   │   │   │   ├── icon_default.png
│   │   │       │   │   │   │   ├── icon_doc.gif
│   │   │       │   │   │   │   ├── icon_exe.gif
│   │   │       │   │   │   │   ├── icon_jpg.gif
│   │   │       │   │   │   │   ├── icon_mp3.gif
│   │   │       │   │   │   │   ├── icon_mv.gif
│   │   │       │   │   │   │   ├── icon_pdf.gif
│   │   │       │   │   │   │   ├── icon_ppt.gif
│   │   │       │   │   │   │   ├── icon_psd.gif
│   │   │       │   │   │   │   ├── icon_rar.gif
│   │   │       │   │   │   │   ├── icon_txt.gif
│   │   │       │   │   │   │   └── icon_xls.gif
│   │   │       │   │   │   └── images
│   │   │       │   │   │       ├── alignicon.gif
│   │   │       │   │   │       ├── alignicon.png
│   │   │       │   │   │       ├── bg.png
│   │   │       │   │   │       ├── file-icons.gif
│   │   │       │   │   │       ├── file-icons.png
│   │   │       │   │   │       ├── icons.gif
│   │   │       │   │   │       ├── icons.png
│   │   │       │   │   │       ├── image.png
│   │   │       │   │   │       ├── progress.png
│   │   │       │   │   │       ├── success.gif
│   │   │       │   │   │       └── success.png
│   │   │       │   │   ├── background
│   │   │       │   │   │   ├── background.css
│   │   │       │   │   │   ├── background.html
│   │   │       │   │   │   ├── background.js
│   │   │       │   │   │   └── images
│   │   │       │   │   │       ├── bg.png
│   │   │       │   │   │       └── success.png
│   │   │       │   │   ├── emotion
│   │   │       │   │   │   ├── emotion.css
│   │   │       │   │   │   ├── emotion.html
│   │   │       │   │   │   ├── emotion.js
│   │   │       │   │   │   └── images
│   │   │       │   │   │       ├── 0.gif
│   │   │       │   │   │       ├── bface.gif
│   │   │       │   │   │       ├── cface.gif
│   │   │       │   │   │       ├── fface.gif
│   │   │       │   │   │       ├── jxface2.gif
│   │   │       │   │   │       ├── neweditor-tab-bg.png
│   │   │       │   │   │       ├── tface.gif
│   │   │       │   │   │       ├── wface.gif
│   │   │       │   │   │       └── yface.gif
│   │   │       │   │   ├── help
│   │   │       │   │   │   ├── help.css
│   │   │       │   │   │   ├── help.html
│   │   │       │   │   │   └── help.js
│   │   │       │   │   ├── image
│   │   │       │   │   │   ├── image.css
│   │   │       │   │   │   ├── image.html
│   │   │       │   │   │   ├── image.js
│   │   │       │   │   │   └── images
│   │   │       │   │   │       ├── alignicon.jpg
│   │   │       │   │   │       ├── bg.png
│   │   │       │   │   │       ├── icons.gif
│   │   │       │   │   │       ├── icons.png
│   │   │       │   │   │       ├── image.png
│   │   │       │   │   │       ├── progress.png
│   │   │       │   │   │       ├── success.gif
│   │   │       │   │   │       └── success.png
│   │   │       │   │   ├── insertframe
│   │   │       │   │   │   └── insertframe.html
│   │   │       │   │   ├── internal.js
│   │   │       │   │   ├── link
│   │   │       │   │   │   └── link.html
│   │   │       │   │   ├── map
│   │   │       │   │   │   ├── map.html
│   │   │       │   │   │   └── show.html
│   │   │       │   │   ├── music
│   │   │       │   │   │   ├── music.css
│   │   │       │   │   │   ├── music.html
│   │   │       │   │   │   └── music.js
│   │   │       │   │   ├── preview
│   │   │       │   │   │   └── preview.html
│   │   │       │   │   ├── scrawl
│   │   │       │   │   │   ├── images
│   │   │       │   │   │   │   ├── addimg.png
│   │   │       │   │   │   │   ├── brush.png
│   │   │       │   │   │   │   ├── delimg.png
│   │   │       │   │   │   │   ├── delimgH.png
│   │   │       │   │   │   │   ├── empty.png
│   │   │       │   │   │   │   ├── emptyH.png
│   │   │       │   │   │   │   ├── eraser.png
│   │   │       │   │   │   │   ├── redo.png
│   │   │       │   │   │   │   ├── redoH.png
│   │   │       │   │   │   │   ├── scale.png
│   │   │       │   │   │   │   ├── scaleH.png
│   │   │       │   │   │   │   ├── size.png
│   │   │       │   │   │   │   ├── undo.png
│   │   │       │   │   │   │   └── undoH.png
│   │   │       │   │   │   ├── scrawl.css
│   │   │       │   │   │   ├── scrawl.html
│   │   │       │   │   │   └── scrawl.js
│   │   │       │   │   ├── searchreplace
│   │   │       │   │   │   ├── searchreplace.html
│   │   │       │   │   │   └── searchreplace.js
│   │   │       │   │   ├── spechars
│   │   │       │   │   │   ├── spechars.html
│   │   │       │   │   │   └── spechars.js
│   │   │       │   │   ├── table
│   │   │       │   │   │   ├── dragicon.png
│   │   │       │   │   │   ├── edittable.css
│   │   │       │   │   │   ├── edittable.html
│   │   │       │   │   │   ├── edittable.js
│   │   │       │   │   │   ├── edittd.html
│   │   │       │   │   │   └── edittip.html
│   │   │       │   │   ├── template
│   │   │       │   │   │   ├── config.js
│   │   │       │   │   │   ├── images
│   │   │       │   │   │   │   ├── bg.gif
│   │   │       │   │   │   │   ├── pre0.png
│   │   │       │   │   │   │   ├── pre1.png
│   │   │       │   │   │   │   ├── pre2.png
│   │   │       │   │   │   │   ├── pre3.png
│   │   │       │   │   │   │   └── pre4.png
│   │   │       │   │   │   ├── template.css
│   │   │       │   │   │   ├── template.html
│   │   │       │   │   │   └── template.js
│   │   │       │   │   ├── video
│   │   │       │   │   │   ├── images
│   │   │       │   │   │   │   ├── bg.png
│   │   │       │   │   │   │   ├── center_focus.jpg
│   │   │       │   │   │   │   ├── file-icons.gif
│   │   │       │   │   │   │   ├── file-icons.png
│   │   │       │   │   │   │   ├── icons.gif
│   │   │       │   │   │   │   ├── icons.png
│   │   │       │   │   │   │   ├── image.png
│   │   │       │   │   │   │   ├── left_focus.jpg
│   │   │       │   │   │   │   ├── none_focus.jpg
│   │   │       │   │   │   │   ├── progress.png
│   │   │       │   │   │   │   ├── right_focus.jpg
│   │   │       │   │   │   │   ├── success.gif
│   │   │       │   │   │   │   └── success.png
│   │   │       │   │   │   ├── video.css
│   │   │       │   │   │   ├── video.html
│   │   │       │   │   │   └── video.js
│   │   │       │   │   └── wordimage
│   │   │       │   │       ├── fClipboard_ueditor.swf
│   │   │       │   │       ├── imageUploader.swf
│   │   │       │   │       ├── tangram.js
│   │   │       │   │       ├── wordimage.html
│   │   │       │   │       └── wordimage.js
│   │   │       │   ├── lang
│   │   │       │   │   └── zh-cn
│   │   │       │   │       ├── images
│   │   │       │   │       │   ├── copy.png
│   │   │       │   │       │   ├── localimage.png
│   │   │       │   │       │   ├── music.png
│   │   │       │   │       │   └── upload.png
│   │   │       │   │       └── zh-cn.js
│   │   │       │   ├── themes
│   │   │       │   │   ├── default
│   │   │       │   │   │   ├── css
│   │   │       │   │   │   │   └── ueditor.css
│   │   │       │   │   │   ├── dialogbase.css
│   │   │       │   │   │   ├── iconfont
│   │   │       │   │   │   │   ├── iconfont.css
│   │   │       │   │   │   │   ├── iconfont.json
│   │   │       │   │   │   │   ├── iconfont.ttf
│   │   │       │   │   │   │   ├── iconfont.woff
│   │   │       │   │   │   │   └── iconfont.woff2
│   │   │       │   │   │   └── images
│   │   │       │   │   │       ├── anchor.gif
│   │   │       │   │   │       ├── arrow.png
│   │   │       │   │   │       ├── arrow_down.png
│   │   │       │   │   │       ├── arrow_up.png
│   │   │       │   │   │       ├── button-bg.gif
│   │   │       │   │   │       ├── cancelbutton.gif
│   │   │       │   │   │       ├── charts.png
│   │   │       │   │   │       ├── cursor_h.gif
│   │   │       │   │   │       ├── cursor_h.png
│   │   │       │   │   │       ├── cursor_v.gif
│   │   │       │   │   │       ├── cursor_v.png
│   │   │       │   │   │       ├── dialog-title-bg.png
│   │   │       │   │   │       ├── filescan.png
│   │   │       │   │   │       ├── highlighted.gif
│   │   │       │   │   │       ├── icons-all.gif
│   │   │       │   │   │       ├── icons.gif
│   │   │       │   │   │       ├── icons.png
│   │   │       │   │   │       ├── loaderror.png
│   │   │       │   │   │       ├── loading.gif
│   │   │       │   │   │       ├── lock.gif
│   │   │       │   │   │       ├── neweditor-tab-bg.png
│   │   │       │   │   │       ├── pagebreak.gif
│   │   │       │   │   │       ├── scale.png
│   │   │       │   │   │       ├── sortable.png
│   │   │       │   │   │       ├── spacer.gif
│   │   │       │   │   │       ├── sparator_v.png
│   │   │       │   │   │       ├── table-cell-align.png
│   │   │       │   │   │       ├── tangram-colorpicker.png
│   │   │       │   │   │       ├── toolbar_bg.png
│   │   │       │   │   │       ├── unhighlighted.gif
│   │   │       │   │   │       ├── upload.png
│   │   │       │   │   │       ├── videologo.gif
│   │   │       │   │   │       ├── word.gif
│   │   │       │   │   │       └── wordpaste.png
│   │   │       │   │   ├── default.css
│   │   │       │   │   └── iframe.css
│   │   │       │   ├── third-party
│   │   │       │   │   ├── SyntaxHighlighter
│   │   │       │   │   │   ├── shCore.js
│   │   │       │   │   │   └── shCoreDefault.css
│   │   │       │   │   ├── codemirror
│   │   │       │   │   │   ├── codemirror.css
│   │   │       │   │   │   └── codemirror.js
│   │   │       │   │   ├── jquery-1.10.2.min.js
│   │   │       │   │   ├── video-js
│   │   │       │   │   │   ├── font
│   │   │       │   │   │   │   ├── vjs.eot
│   │   │       │   │   │   │   ├── vjs.svg
│   │   │       │   │   │   │   ├── vjs.ttf
│   │   │       │   │   │   │   └── vjs.woff
│   │   │       │   │   │   ├── video-js.css
│   │   │       │   │   │   ├── video-js.swf
│   │   │       │   │   │   └── video.js
│   │   │       │   │   └── xss.min.js
│   │   │       │   ├── ueditor.config.js
│   │   │       │   └── ueditor.js
│   │   │       ├── videojs
│   │   │       │   ├── VideoJS.eot
│   │   │       │   ├── video-js.css
│   │   │       │   ├── video-js.js
│   │   │       │   ├── videojs-contrib-hlsjs.min.js
│   │   │       │   └── videojs.hotkeys.min.js
│   │   │       ├── vue.js
│   │   │       └── webuploader
│   │   │           ├── Uploader.swf
│   │   │           ├── css.css
│   │   │           └── webuploader.js
│   │   ├── data
│   │   ├── data_chunk
│   │   ├── data_temp
│   │   ├── favicon.ico
│   │   ├── index.php
│   │   ├── install.php
│   │   ├── robots.txt
│   │   ├── theme
│   │   │   ├── corp
│   │   │   │   └── css
│   │   │   │       ├── style.css
│   │   │   │       └── style.css._delete_.CmsThemeCorp
│   │   │   └── default
│   │   │       └── css
│   │   │           ├── style.css
│   │   │           └── style.less
│   │   ├── vendor
│   │   │   ├── AdminManager
│   │   │   │   └── entry
│   │   │   │       └── upgrade.js
│   │   │   ├── Banner
│   │   │   │   └── style
│   │   │   │       └── banner.css
│   │   │   ├── CourseLive
│   │   │   │   └── style
│   │   │   │       └── video.css
│   │   │   ├── CourseVideo
│   │   │   │   └── style
│   │   │   │       └── video.css
│   │   │   ├── Member
│   │   │   │   └── style
│   │   │   │       └── member.css
│   │   │   ├── ModuleDeveloper
│   │   │   │   ├── entry
│   │   │   │   │   ├── apiDoc.js
│   │   │   │   │   └── moduleDeveloper.js
│   │   │   │   └── style
│   │   │   │       ├── swagger-custom.css
│   │   │   │       └── swagger-ui.css
│   │   │   ├── ModuleStore
│   │   │   │   └── entry
│   │   │   │       └── moduleStore.js
│   │   │   ├── PayCenter
│   │   │   │   └── entry
│   │   │   │       └── pay.js
│   │   │   ├── Tecmz
│   │   │   │   └── entry
│   │   │   │       ├── upgrade.js
│   │   │   │       └── versionCheck.js
│   │   │   └── Vendor
│   │   │       └── asset
│   │   │           ├── toggle.css
│   │   │           └── toggle.js
│   │   └── web.config
│   ├── resources
│   │   ├── lang
│   │   │   ├── en
│   │   │   │   ├── auth.php
│   │   │   │   ├── pagination.php
│   │   │   │   ├── passwords.php
│   │   │   │   └── validation.php
│   │   │   └── zh
│   │   │       └── validation.php
│   │   └── views
│   │       ├── errors
│   │       │   ├── 404.blade.php
│   │       │   └── 500.blade.php
│   │       └── theme
│   │           └── default
│   │               └── pc
│   │                   ├── dialogPage.blade.php
│   │                   ├── frame.blade.php
│   │                   ├── index.blade.php
│   │                   ├── member
│   │                   │   └── frame.blade.php
│   │                   └── share
│   │                       ├── footer.blade.php
│   │                       └── header.blade.php
│   ├── server.php
│   ├── storage
│   │   ├── app
│   │   ├── cache
│   │   ├── framework
│   │   │   ├── cache
│   │   │   ├── sessions
│   │   │   └── views
│   │   └── logs
│   └── vendor
│       ├── arvenil
│       │   └── ninja-mutex
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           └── NinjaMutex
│       │               ├── Lock
│       │               │   ├── DirectoryLock.php
│       │               │   ├── FlockLock.php
│       │               │   ├── LockAbstract.php
│       │               │   ├── LockExpirationInterface.php
│       │               │   ├── LockInterface.php
│       │               │   ├── MemcacheLock.php
│       │               │   ├── MemcachedLock.php
│       │               │   ├── MySqlLock.php
│       │               │   ├── PhpRedisLock.php
│       │               │   └── PredisRedisLock.php
│       │               ├── Mutex.php
│       │               ├── MutexException.php
│       │               ├── MutexFabric.php
│       │               └── UnrecoverableMutexException.php
│       ├── autoload.php
│       ├── bacon
│       │   └── bacon-qr-code
│       │       ├── LICENSE
│       │       ├── Module.php
│       │       ├── README.md
│       │       ├── autoload_classmap.php
│       │       ├── autoload_function.php
│       │       ├── autoload_register.php
│       │       └── src
│       │           └── BaconQrCode
│       │               ├── Common
│       │               │   ├── AbstractEnum.php
│       │               │   ├── BitArray.php
│       │               │   ├── BitMatrix.php
│       │               │   ├── BitUtils.php
│       │               │   ├── CharacterSetEci.php
│       │               │   ├── EcBlock.php
│       │               │   ├── EcBlocks.php
│       │               │   ├── ErrorCorrectionLevel.php
│       │               │   ├── FormatInformation.php
│       │               │   ├── Mode.php
│       │               │   ├── ReedSolomonCodec.php
│       │               │   └── Version.php
│       │               ├── Encoder
│       │               │   ├── BlockPair.php
│       │               │   ├── ByteMatrix.php
│       │               │   ├── Encoder.php
│       │               │   ├── MaskUtil.php
│       │               │   ├── MatrixUtil.php
│       │               │   └── QrCode.php
│       │               ├── Exception
│       │               │   ├── ExceptionInterface.php
│       │               │   ├── InvalidArgumentException.php
│       │               │   ├── OutOfBoundsException.php
│       │               │   ├── RuntimeException.php
│       │               │   ├── UnexpectedValueException.php
│       │               │   └── WriterException.php
│       │               ├── Renderer
│       │               │   ├── Color
│       │               │   │   ├── Cmyk.php
│       │               │   │   ├── ColorInterface.php
│       │               │   │   ├── Gray.php
│       │               │   │   └── Rgb.php
│       │               │   ├── Image
│       │               │   │   ├── AbstractRenderer.php
│       │               │   │   ├── Decorator
│       │               │   │   │   ├── DecoratorInterface.php
│       │               │   │   │   └── FinderPattern.php
│       │               │   │   ├── Eps.php
│       │               │   │   ├── Png.php
│       │               │   │   ├── RendererInterface.php
│       │               │   │   └── Svg.php
│       │               │   ├── RendererInterface.php
│       │               │   └── Text
│       │               │       ├── Html.php
│       │               │       └── Plain.php
│       │               └── Writer.php
│       ├── bin
│       │   ├── commonmark
│       │   ├── doctrine-dbal
│       │   ├── php-parse
│       │   ├── psysh
│       │   └── upgrade-carbon
│       ├── chumper
│       │   └── zipper
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           └── Chumper
│       │               └── Zipper
│       │                   ├── Facades
│       │                   │   └── Zipper.php
│       │                   ├── Repositories
│       │                   │   ├── RepositoryInterface.php
│       │                   │   └── ZipRepository.php
│       │                   ├── Zipper.php
│       │                   └── ZipperServiceProvider.php
│       ├── classpreloader
│       │   └── classpreloader
│       │       ├── LICENSE
│       │       └── src
│       │           ├── ClassList.php
│       │           ├── ClassLoader.php
│       │           ├── ClassNode.php
│       │           ├── ClassPreloader.php
│       │           ├── Config.php
│       │           ├── Exceptions
│       │           │   ├── DirConstantException.php
│       │           │   ├── FileConstantException.php
│       │           │   ├── StrictTypesException.php
│       │           │   └── VisitorExceptionInterface.php
│       │           ├── Factory.php
│       │           └── Parser
│       │               ├── AbstractNodeVisitor.php
│       │               ├── DirVisitor.php
│       │               ├── FileVisitor.php
│       │               ├── NodeTraverser.php
│       │               └── StrictTypesVisitor.php
│       ├── composer
│       │   ├── ClassLoader.php
│       │   ├── InstalledVersions.php
│       │   ├── LICENSE
│       │   ├── autoload_classmap.php
│       │   ├── autoload_files.php
│       │   ├── autoload_namespaces.php
│       │   ├── autoload_psr4.php
│       │   ├── autoload_real.php
│       │   ├── autoload_static.php
│       │   ├── installed.php
│       │   └── platform_check.php
│       ├── danielstjules
│       │   └── stringy
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE.txt
│       │       ├── README.md
│       │       └── src
│       │           ├── Create.php
│       │           ├── StaticStringy.php
│       │           └── Stringy.php
│       ├── dnoegel
│       │   └── php-xdg-base-dir
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           └── Xdg.php
│       ├── doctrine
│       │   ├── annotations
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── lib
│       │   │   │   └── Doctrine
│       │   │   │       └── Common
│       │   │   │           └── Annotations
│       │   │   │               ├── Annotation
│       │   │   │               │   ├── Attribute.php
│       │   │   │               │   ├── Attributes.php
│       │   │   │               │   ├── Enum.php
│       │   │   │               │   ├── IgnoreAnnotation.php
│       │   │   │               │   ├── Required.php
│       │   │   │               │   └── Target.php
│       │   │   │               ├── Annotation.php
│       │   │   │               ├── AnnotationException.php
│       │   │   │               ├── AnnotationReader.php
│       │   │   │               ├── AnnotationRegistry.php
│       │   │   │               ├── CachedReader.php
│       │   │   │               ├── DocLexer.php
│       │   │   │               ├── DocParser.php
│       │   │   │               ├── FileCacheReader.php
│       │   │   │               ├── IndexedReader.php
│       │   │   │               ├── PhpParser.php
│       │   │   │               ├── Reader.php
│       │   │   │               ├── SimpleAnnotationReader.php
│       │   │   │               └── TokenParser.php
│       │   │   └── phpstan.neon
│       │   ├── cache
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── UPGRADE.md
│       │   │   ├── build.properties
│       │   │   ├── build.xml
│       │   │   └── lib
│       │   │       └── Doctrine
│       │   │           └── Common
│       │   │               └── Cache
│       │   │                   ├── ApcCache.php
│       │   │                   ├── ApcuCache.php
│       │   │                   ├── ArrayCache.php
│       │   │                   ├── Cache.php
│       │   │                   ├── CacheProvider.php
│       │   │                   ├── ChainCache.php
│       │   │                   ├── ClearableCache.php
│       │   │                   ├── CouchbaseCache.php
│       │   │                   ├── FileCache.php
│       │   │                   ├── FilesystemCache.php
│       │   │                   ├── FlushableCache.php
│       │   │                   ├── MemcacheCache.php
│       │   │                   ├── MemcachedCache.php
│       │   │                   ├── MongoDBCache.php
│       │   │                   ├── MultiGetCache.php
│       │   │                   ├── MultiPutCache.php
│       │   │                   ├── PhpFileCache.php
│       │   │                   ├── PredisCache.php
│       │   │                   ├── RedisCache.php
│       │   │                   ├── RiakCache.php
│       │   │                   ├── SQLite3Cache.php
│       │   │                   ├── Version.php
│       │   │                   ├── VoidCache.php
│       │   │                   ├── WinCacheCache.php
│       │   │                   ├── XcacheCache.php
│       │   │                   └── ZendDataCache.php
│       │   ├── collections
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── lib
│       │   │       └── Doctrine
│       │   │           └── Common
│       │   │               └── Collections
│       │   │                   ├── AbstractLazyCollection.php
│       │   │                   ├── ArrayCollection.php
│       │   │                   ├── Collection.php
│       │   │                   ├── Criteria.php
│       │   │                   ├── Expr
│       │   │                   │   ├── ClosureExpressionVisitor.php
│       │   │                   │   ├── Comparison.php
│       │   │                   │   ├── CompositeExpression.php
│       │   │                   │   ├── Expression.php
│       │   │                   │   ├── ExpressionVisitor.php
│       │   │                   │   └── Value.php
│       │   │                   ├── ExpressionBuilder.php
│       │   │                   └── Selectable.php
│       │   ├── common
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── UPGRADE_TO_2_1
│       │   │   ├── UPGRADE_TO_2_2
│       │   │   ├── humbug.json.dist
│       │   │   └── lib
│       │   │       └── Doctrine
│       │   │           └── Common
│       │   │               ├── ClassLoader.php
│       │   │               ├── CommonException.php
│       │   │               ├── Comparable.php
│       │   │               ├── EventArgs.php
│       │   │               ├── EventManager.php
│       │   │               ├── EventSubscriber.php
│       │   │               ├── Lexer.php
│       │   │               ├── NotifyPropertyChanged.php
│       │   │               ├── Persistence
│       │   │               │   ├── AbstractManagerRegistry.php
│       │   │               │   ├── ConnectionRegistry.php
│       │   │               │   ├── Event
│       │   │               │   │   ├── LifecycleEventArgs.php
│       │   │               │   │   ├── LoadClassMetadataEventArgs.php
│       │   │               │   │   ├── ManagerEventArgs.php
│       │   │               │   │   ├── OnClearEventArgs.php
│       │   │               │   │   └── PreUpdateEventArgs.php
│       │   │               │   ├── ManagerRegistry.php
│       │   │               │   ├── Mapping
│       │   │               │   │   ├── AbstractClassMetadataFactory.php
│       │   │               │   │   ├── ClassMetadata.php
│       │   │               │   │   ├── ClassMetadataFactory.php
│       │   │               │   │   ├── Driver
│       │   │               │   │   │   ├── AnnotationDriver.php
│       │   │               │   │   │   ├── DefaultFileLocator.php
│       │   │               │   │   │   ├── FileDriver.php
│       │   │               │   │   │   ├── FileLocator.php
│       │   │               │   │   │   ├── MappingDriver.php
│       │   │               │   │   │   ├── MappingDriverChain.php
│       │   │               │   │   │   ├── PHPDriver.php
│       │   │               │   │   │   ├── StaticPHPDriver.php
│       │   │               │   │   │   └── SymfonyFileLocator.php
│       │   │               │   │   ├── MappingException.php
│       │   │               │   │   ├── ReflectionService.php
│       │   │               │   │   ├── RuntimeReflectionService.php
│       │   │               │   │   └── StaticReflectionService.php
│       │   │               │   ├── ObjectManager.php
│       │   │               │   ├── ObjectManagerAware.php
│       │   │               │   ├── ObjectManagerDecorator.php
│       │   │               │   ├── ObjectRepository.php
│       │   │               │   ├── PersistentObject.php
│       │   │               │   └── Proxy.php
│       │   │               ├── PropertyChangedListener.php
│       │   │               ├── Proxy
│       │   │               │   ├── AbstractProxyFactory.php
│       │   │               │   ├── Autoloader.php
│       │   │               │   ├── Exception
│       │   │               │   │   ├── InvalidArgumentException.php
│       │   │               │   │   ├── OutOfBoundsException.php
│       │   │               │   │   ├── ProxyException.php
│       │   │               │   │   └── UnexpectedValueException.php
│       │   │               │   ├── Proxy.php
│       │   │               │   ├── ProxyDefinition.php
│       │   │               │   └── ProxyGenerator.php
│       │   │               ├── Reflection
│       │   │               │   ├── ClassFinderInterface.php
│       │   │               │   ├── Psr0FindFile.php
│       │   │               │   ├── ReflectionProviderInterface.php
│       │   │               │   ├── RuntimePublicReflectionProperty.php
│       │   │               │   ├── StaticReflectionClass.php
│       │   │               │   ├── StaticReflectionMethod.php
│       │   │               │   ├── StaticReflectionParser.php
│       │   │               │   └── StaticReflectionProperty.php
│       │   │               ├── Util
│       │   │               │   ├── ClassUtils.php
│       │   │               │   ├── Debug.php
│       │   │               │   └── Inflector.php
│       │   │               └── Version.php
│       │   ├── dbal
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── SECURITY.md
│       │   │   ├── UPGRADE.md
│       │   │   └── lib
│       │   │       └── Doctrine
│       │   │           └── DBAL
│       │   │               ├── Cache
│       │   │               │   ├── ArrayStatement.php
│       │   │               │   ├── CacheException.php
│       │   │               │   ├── QueryCacheProfile.php
│       │   │               │   └── ResultCacheStatement.php
│       │   │               ├── Configuration.php
│       │   │               ├── Connection.php
│       │   │               ├── ConnectionException.php
│       │   │               ├── Connections
│       │   │               │   └── MasterSlaveConnection.php
│       │   │               ├── DBALException.php
│       │   │               ├── Driver
│       │   │               │   ├── AbstractDB2Driver.php
│       │   │               │   ├── AbstractDriverException.php
│       │   │               │   ├── AbstractMySQLDriver.php
│       │   │               │   ├── AbstractOracleDriver.php
│       │   │               │   ├── AbstractPostgreSQLDriver.php
│       │   │               │   ├── AbstractSQLAnywhereDriver.php
│       │   │               │   ├── AbstractSQLServerDriver.php
│       │   │               │   ├── AbstractSQLiteDriver.php
│       │   │               │   ├── Connection.php
│       │   │               │   ├── DriverException.php
│       │   │               │   ├── DrizzlePDOMySql
│       │   │               │   │   ├── Connection.php
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── ExceptionConverterDriver.php
│       │   │               │   ├── IBMDB2
│       │   │               │   │   ├── DB2Connection.php
│       │   │               │   │   ├── DB2Driver.php
│       │   │               │   │   ├── DB2Exception.php
│       │   │               │   │   └── DB2Statement.php
│       │   │               │   ├── Mysqli
│       │   │               │   │   ├── Driver.php
│       │   │               │   │   ├── MysqliConnection.php
│       │   │               │   │   ├── MysqliException.php
│       │   │               │   │   └── MysqliStatement.php
│       │   │               │   ├── OCI8
│       │   │               │   │   ├── Driver.php
│       │   │               │   │   ├── OCI8Connection.php
│       │   │               │   │   ├── OCI8Exception.php
│       │   │               │   │   └── OCI8Statement.php
│       │   │               │   ├── PDOConnection.php
│       │   │               │   ├── PDOException.php
│       │   │               │   ├── PDOIbm
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── PDOMySql
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── PDOOracle
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── PDOPgSql
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── PDOSqlite
│       │   │               │   │   └── Driver.php
│       │   │               │   ├── PDOSqlsrv
│       │   │               │   │   ├── Connection.php
│       │   │               │   │   ├── Driver.php
│       │   │               │   │   └── Statement.php
│       │   │               │   ├── PDOStatement.php
│       │   │               │   ├── PingableConnection.php
│       │   │               │   ├── ResultStatement.php
│       │   │               │   ├── SQLAnywhere
│       │   │               │   │   ├── Driver.php
│       │   │               │   │   ├── SQLAnywhereConnection.php
│       │   │               │   │   ├── SQLAnywhereException.php
│       │   │               │   │   └── SQLAnywhereStatement.php
│       │   │               │   ├── SQLSrv
│       │   │               │   │   ├── Driver.php
│       │   │               │   │   ├── LastInsertId.php
│       │   │               │   │   ├── SQLSrvConnection.php
│       │   │               │   │   ├── SQLSrvException.php
│       │   │               │   │   └── SQLSrvStatement.php
│       │   │               │   ├── ServerInfoAwareConnection.php
│       │   │               │   └── Statement.php
│       │   │               ├── Driver.php
│       │   │               ├── DriverManager.php
│       │   │               ├── Event
│       │   │               │   ├── ConnectionEventArgs.php
│       │   │               │   ├── Listeners
│       │   │               │   │   ├── MysqlSessionInit.php
│       │   │               │   │   ├── OracleSessionInit.php
│       │   │               │   │   └── SQLSessionInit.php
│       │   │               │   ├── SchemaAlterTableAddColumnEventArgs.php
│       │   │               │   ├── SchemaAlterTableChangeColumnEventArgs.php
│       │   │               │   ├── SchemaAlterTableEventArgs.php
│       │   │               │   ├── SchemaAlterTableRemoveColumnEventArgs.php
│       │   │               │   ├── SchemaAlterTableRenameColumnEventArgs.php
│       │   │               │   ├── SchemaColumnDefinitionEventArgs.php
│       │   │               │   ├── SchemaCreateTableColumnEventArgs.php
│       │   │               │   ├── SchemaCreateTableEventArgs.php
│       │   │               │   ├── SchemaDropTableEventArgs.php
│       │   │               │   ├── SchemaEventArgs.php
│       │   │               │   └── SchemaIndexDefinitionEventArgs.php
│       │   │               ├── Events.php
│       │   │               ├── Exception
│       │   │               │   ├── ConnectionException.php
│       │   │               │   ├── ConstraintViolationException.php
│       │   │               │   ├── DatabaseObjectExistsException.php
│       │   │               │   ├── DatabaseObjectNotFoundException.php
│       │   │               │   ├── DriverException.php
│       │   │               │   ├── ForeignKeyConstraintViolationException.php
│       │   │               │   ├── InvalidArgumentException.php
│       │   │               │   ├── InvalidFieldNameException.php
│       │   │               │   ├── NonUniqueFieldNameException.php
│       │   │               │   ├── NotNullConstraintViolationException.php
│       │   │               │   ├── ReadOnlyException.php
│       │   │               │   ├── ServerException.php
│       │   │               │   ├── SyntaxErrorException.php
│       │   │               │   ├── TableExistsException.php
│       │   │               │   ├── TableNotFoundException.php
│       │   │               │   └── UniqueConstraintViolationException.php
│       │   │               ├── Id
│       │   │               │   ├── TableGenerator.php
│       │   │               │   └── TableGeneratorSchemaVisitor.php
│       │   │               ├── LockMode.php
│       │   │               ├── Logging
│       │   │               │   ├── DebugStack.php
│       │   │               │   ├── EchoSQLLogger.php
│       │   │               │   ├── LoggerChain.php
│       │   │               │   └── SQLLogger.php
│       │   │               ├── Platforms
│       │   │               │   ├── AbstractPlatform.php
│       │   │               │   ├── DB2Platform.php
│       │   │               │   ├── DrizzlePlatform.php
│       │   │               │   ├── Keywords
│       │   │               │   │   ├── DB2Keywords.php
│       │   │               │   │   ├── DrizzleKeywords.php
│       │   │               │   │   ├── KeywordList.php
│       │   │               │   │   ├── MsSQLKeywords.php
│       │   │               │   │   ├── MySQL57Keywords.php
│       │   │               │   │   ├── MySQLKeywords.php
│       │   │               │   │   ├── OracleKeywords.php
│       │   │               │   │   ├── PostgreSQL91Keywords.php
│       │   │               │   │   ├── PostgreSQL92Keywords.php
│       │   │               │   │   ├── PostgreSQLKeywords.php
│       │   │               │   │   ├── ReservedKeywordsValidator.php
│       │   │               │   │   ├── SQLAnywhere11Keywords.php
│       │   │               │   │   ├── SQLAnywhere12Keywords.php
│       │   │               │   │   ├── SQLAnywhere16Keywords.php
│       │   │               │   │   ├── SQLAnywhereKeywords.php
│       │   │               │   │   ├── SQLServer2005Keywords.php
│       │   │               │   │   ├── SQLServer2008Keywords.php
│       │   │               │   │   ├── SQLServer2012Keywords.php
│       │   │               │   │   ├── SQLServerKeywords.php
│       │   │               │   │   └── SQLiteKeywords.php
│       │   │               │   ├── MySQL57Platform.php
│       │   │               │   ├── MySqlPlatform.php
│       │   │               │   ├── OraclePlatform.php
│       │   │               │   ├── PostgreSQL91Platform.php
│       │   │               │   ├── PostgreSQL92Platform.php
│       │   │               │   ├── PostgreSqlPlatform.php
│       │   │               │   ├── SQLAnywhere11Platform.php
│       │   │               │   ├── SQLAnywhere12Platform.php
│       │   │               │   ├── SQLAnywhere16Platform.php
│       │   │               │   ├── SQLAnywherePlatform.php
│       │   │               │   ├── SQLAzurePlatform.php
│       │   │               │   ├── SQLServer2005Platform.php
│       │   │               │   ├── SQLServer2008Platform.php
│       │   │               │   ├── SQLServer2012Platform.php
│       │   │               │   ├── SQLServerPlatform.php
│       │   │               │   └── SqlitePlatform.php
│       │   │               ├── Portability
│       │   │               │   ├── Connection.php
│       │   │               │   └── Statement.php
│       │   │               ├── Query
│       │   │               │   ├── Expression
│       │   │               │   │   ├── CompositeExpression.php
│       │   │               │   │   └── ExpressionBuilder.php
│       │   │               │   ├── QueryBuilder.php
│       │   │               │   └── QueryException.php
│       │   │               ├── README.markdown
│       │   │               ├── SQLParserUtils.php
│       │   │               ├── SQLParserUtilsException.php
│       │   │               ├── Schema
│       │   │               │   ├── AbstractAsset.php
│       │   │               │   ├── AbstractSchemaManager.php
│       │   │               │   ├── Column.php
│       │   │               │   ├── ColumnDiff.php
│       │   │               │   ├── Comparator.php
│       │   │               │   ├── Constraint.php
│       │   │               │   ├── DB2SchemaManager.php
│       │   │               │   ├── DrizzleSchemaManager.php
│       │   │               │   ├── ForeignKeyConstraint.php
│       │   │               │   ├── Identifier.php
│       │   │               │   ├── Index.php
│       │   │               │   ├── MySqlSchemaManager.php
│       │   │               │   ├── OracleSchemaManager.php
│       │   │               │   ├── PostgreSqlSchemaManager.php
│       │   │               │   ├── SQLAnywhereSchemaManager.php
│       │   │               │   ├── SQLServerSchemaManager.php
│       │   │               │   ├── Schema.php
│       │   │               │   ├── SchemaConfig.php
│       │   │               │   ├── SchemaDiff.php
│       │   │               │   ├── SchemaException.php
│       │   │               │   ├── Sequence.php
│       │   │               │   ├── SqliteSchemaManager.php
│       │   │               │   ├── Synchronizer
│       │   │               │   │   ├── AbstractSchemaSynchronizer.php
│       │   │               │   │   ├── SchemaSynchronizer.php
│       │   │               │   │   └── SingleDatabaseSynchronizer.php
│       │   │               │   ├── Table.php
│       │   │               │   ├── TableDiff.php
│       │   │               │   ├── View.php
│       │   │               │   └── Visitor
│       │   │               │       ├── AbstractVisitor.php
│       │   │               │       ├── CreateSchemaSqlCollector.php
│       │   │               │       ├── DropSchemaSqlCollector.php
│       │   │               │       ├── Graphviz.php
│       │   │               │       ├── NamespaceVisitor.php
│       │   │               │       ├── RemoveNamespacedAssets.php
│       │   │               │       ├── SchemaDiffVisitor.php
│       │   │               │       └── Visitor.php
│       │   │               ├── Sharding
│       │   │               │   ├── PoolingShardConnection.php
│       │   │               │   ├── PoolingShardManager.php
│       │   │               │   ├── SQLAzure
│       │   │               │   │   ├── SQLAzureFederationsSynchronizer.php
│       │   │               │   │   ├── SQLAzureShardManager.php
│       │   │               │   │   └── Schema
│       │   │               │   │       └── MultiTenantVisitor.php
│       │   │               │   ├── ShardChoser
│       │   │               │   │   ├── MultiTenantShardChoser.php
│       │   │               │   │   └── ShardChoser.php
│       │   │               │   ├── ShardManager.php
│       │   │               │   └── ShardingException.php
│       │   │               ├── Statement.php
│       │   │               ├── Tools
│       │   │               │   └── Console
│       │   │               │       ├── Command
│       │   │               │       │   ├── ImportCommand.php
│       │   │               │       │   ├── ReservedWordsCommand.php
│       │   │               │       │   └── RunSqlCommand.php
│       │   │               │       ├── ConsoleRunner.php
│       │   │               │       └── Helper
│       │   │               │           └── ConnectionHelper.php
│       │   │               ├── Types
│       │   │               │   ├── ArrayType.php
│       │   │               │   ├── BigIntType.php
│       │   │               │   ├── BinaryType.php
│       │   │               │   ├── BlobType.php
│       │   │               │   ├── BooleanType.php
│       │   │               │   ├── ConversionException.php
│       │   │               │   ├── DateTimeType.php
│       │   │               │   ├── DateTimeTzType.php
│       │   │               │   ├── DateType.php
│       │   │               │   ├── DecimalType.php
│       │   │               │   ├── FloatType.php
│       │   │               │   ├── GuidType.php
│       │   │               │   ├── IntegerType.php
│       │   │               │   ├── JsonArrayType.php
│       │   │               │   ├── ObjectType.php
│       │   │               │   ├── SimpleArrayType.php
│       │   │               │   ├── SmallIntType.php
│       │   │               │   ├── StringType.php
│       │   │               │   ├── TextType.php
│       │   │               │   ├── TimeType.php
│       │   │               │   ├── Type.php
│       │   │               │   └── VarDateTimeType.php
│       │   │               ├── Version.php
│       │   │               └── VersionAwarePlatformDriver.php
│       │   ├── inflector
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── lib
│       │   │       └── Doctrine
│       │   │           └── Common
│       │   │               └── Inflector
│       │   │                   └── Inflector.php
│       │   └── lexer
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── lib
│       │           └── Doctrine
│       │               └── Common
│       │                   └── Lexer
│       │                       └── AbstractLexer.php
│       ├── easywechat-composer
│       │   └── easywechat-composer
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           ├── Commands
│       │           │   ├── ExtensionsCommand.php
│       │           │   └── Provider.php
│       │           ├── Contracts
│       │           │   └── Encrypter.php
│       │           ├── Delegation
│       │           │   ├── DelegationOptions.php
│       │           │   ├── DelegationTo.php
│       │           │   └── Hydrate.php
│       │           ├── EasyWeChat.php
│       │           ├── Encryption
│       │           │   └── DefaultEncrypter.php
│       │           ├── Exceptions
│       │           │   ├── DecryptException.php
│       │           │   ├── DelegationException.php
│       │           │   └── EncryptException.php
│       │           ├── Extension.php
│       │           ├── Http
│       │           │   ├── DelegationResponse.php
│       │           │   └── Response.php
│       │           ├── Laravel
│       │           │   ├── Http
│       │           │   │   └── Controllers
│       │           │   │       └── DelegatesController.php
│       │           │   ├── ServiceProvider.php
│       │           │   ├── config.php
│       │           │   └── routes.php
│       │           ├── ManifestManager.php
│       │           ├── Plugin.php
│       │           └── Traits
│       │               ├── MakesHttpRequests.php
│       │               └── WithAggregator.php
│       ├── elasticsearch
│       │   └── elasticsearch
│       │       ├── BREAKING_CHANGES.md
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── NOTICE
│       │       ├── README.md
│       │       ├── docs
│       │       │   ├── breaking-changes.asciidoc
│       │       │   ├── build
│       │       │   │   ├── Elasticsearch
│       │       │   │   │   ├── Client.asciidoc
│       │       │   │   │   ├── ClientBuilder.asciidoc
│       │       │   │   │   └── Namespaces
│       │       │   │   │       ├── CatNamespace.asciidoc
│       │       │   │   │       ├── ClusterNamespace.asciidoc
│       │       │   │   │       ├── IndicesNamespace.asciidoc
│       │       │   │   │       ├── IngestNamespace.asciidoc
│       │       │   │   │       ├── NodesNamespace.asciidoc
│       │       │   │   │       ├── SnapshotNamespace.asciidoc
│       │       │   │   │       └── TasksNamespace.asciidoc
│       │       │   │   ├── PROJECT_VERSION
│       │       │   │   ├── SAMI_VERSION
│       │       │   │   ├── classes.asciidoc
│       │       │   │   ├── interfaces.asciidoc
│       │       │   │   ├── namespaces.asciidoc
│       │       │   │   └── renderer.index
│       │       │   ├── community.asciidoc
│       │       │   ├── configuration.asciidoc
│       │       │   ├── connection-pool.asciidoc
│       │       │   ├── crud.asciidoc
│       │       │   ├── futures.asciidoc
│       │       │   ├── index-operations.asciidoc
│       │       │   ├── index.asciidoc
│       │       │   ├── installation.asciidoc
│       │       │   ├── namespaces.asciidoc
│       │       │   ├── overview.asciidoc
│       │       │   ├── per-request-configuration.asciidoc
│       │       │   ├── php-version-requirement.asciidoc
│       │       │   ├── php_json_objects.asciidoc
│       │       │   ├── quickstart.asciidoc
│       │       │   ├── search-operations.asciidoc
│       │       │   ├── security.asciidoc
│       │       │   ├── selectors.asciidoc
│       │       │   └── serializers.asciidoc
│       │       ├── phpunit-integration.xml
│       │       ├── src
│       │       │   └── Elasticsearch
│       │       │       ├── Client.php
│       │       │       ├── ClientBuilder.php
│       │       │       ├── Common
│       │       │       │   ├── EmptyLogger.php
│       │       │       │   └── Exceptions
│       │       │       │       ├── AlreadyExpiredException.php
│       │       │       │       ├── BadMethodCallException.php
│       │       │       │       ├── BadRequest400Exception.php
│       │       │       │       ├── ClientErrorResponseException.php
│       │       │       │       ├── Conflict409Exception.php
│       │       │       │       ├── Curl
│       │       │       │       │   ├── CouldNotConnectToHost.php
│       │       │       │       │   ├── CouldNotResolveHostException.php
│       │       │       │       │   └── OperationTimeoutException.php
│       │       │       │       ├── ElasticsearchException.php
│       │       │       │       ├── Forbidden403Exception.php
│       │       │       │       ├── InvalidArgumentException.php
│       │       │       │       ├── MaxRetriesException.php
│       │       │       │       ├── Missing404Exception.php
│       │       │       │       ├── NoDocumentsToGetException.php
│       │       │       │       ├── NoNodesAvailableException.php
│       │       │       │       ├── NoShardAvailableException.php
│       │       │       │       ├── RequestTimeout408Exception.php
│       │       │       │       ├── RoutingMissingException.php
│       │       │       │       ├── RuntimeException.php
│       │       │       │       ├── ScriptLangNotSupportedException.php
│       │       │       │       ├── Serializer
│       │       │       │       │   └── JsonErrorException.php
│       │       │       │       ├── ServerErrorResponseException.php
│       │       │       │       ├── TransportException.php
│       │       │       │       └── UnexpectedValueException.php
│       │       │       ├── ConnectionPool
│       │       │       │   ├── AbstractConnectionPool.php
│       │       │       │   ├── ConnectionPoolInterface.php
│       │       │       │   ├── Selectors
│       │       │       │   │   ├── RandomSelector.php
│       │       │       │   │   ├── RoundRobinSelector.php
│       │       │       │   │   ├── SelectorInterface.php
│       │       │       │   │   └── StickyRoundRobinSelector.php
│       │       │       │   ├── SimpleConnectionPool.php
│       │       │       │   ├── SniffingConnectionPool.php
│       │       │       │   ├── StaticConnectionPool.php
│       │       │       │   └── StaticNoPingConnectionPool.php
│       │       │       ├── Connections
│       │       │       │   ├── Connection.php
│       │       │       │   ├── ConnectionFactory.php
│       │       │       │   ├── ConnectionFactoryInterface.php
│       │       │       │   └── ConnectionInterface.php
│       │       │       ├── Endpoints
│       │       │       │   ├── AbstractEndpoint.php
│       │       │       │   ├── Bulk.php
│       │       │       │   ├── BulkEndpointInterface.php
│       │       │       │   ├── Cat
│       │       │       │   │   ├── Aliases.php
│       │       │       │   │   ├── Allocation.php
│       │       │       │   │   ├── Count.php
│       │       │       │   │   ├── Fielddata.php
│       │       │       │   │   ├── Health.php
│       │       │       │   │   ├── Help.php
│       │       │       │   │   ├── Indices.php
│       │       │       │   │   ├── Master.php
│       │       │       │   │   ├── NodeAttrs.php
│       │       │       │   │   ├── Nodes.php
│       │       │       │   │   ├── PendingTasks.php
│       │       │       │   │   ├── Plugins.php
│       │       │       │   │   ├── Recovery.php
│       │       │       │   │   ├── Repositories.php
│       │       │       │   │   ├── Segments.php
│       │       │       │   │   ├── Shards.php
│       │       │       │   │   ├── Snapshots.php
│       │       │       │   │   ├── Tasks.php
│       │       │       │   │   ├── Templates.php
│       │       │       │   │   └── ThreadPool.php
│       │       │       │   ├── ClearScroll.php
│       │       │       │   ├── Cluster
│       │       │       │   │   ├── AllocationExplain.php
│       │       │       │   │   ├── Health.php
│       │       │       │   │   ├── Nodes
│       │       │       │   │   │   ├── AbstractNodesEndpoint.php
│       │       │       │   │   │   ├── HotThreads.php
│       │       │       │   │   │   ├── Info.php
│       │       │       │   │   │   ├── Shutdown.php
│       │       │       │   │   │   └── Stats.php
│       │       │       │   │   ├── PendingTasks.php
│       │       │       │   │   ├── Reroute.php
│       │       │       │   │   ├── Settings
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   ├── State.php
│       │       │       │   │   └── Stats.php
│       │       │       │   ├── Count.php
│       │       │       │   ├── CountPercolate.php
│       │       │       │   ├── Create.php
│       │       │       │   ├── Delete.php
│       │       │       │   ├── DeleteByQuery.php
│       │       │       │   ├── Exists.php
│       │       │       │   ├── Explain.php
│       │       │       │   ├── FieldCaps.php
│       │       │       │   ├── FieldStats.php
│       │       │       │   ├── Get.php
│       │       │       │   ├── Index.php
│       │       │       │   ├── Indices
│       │       │       │   │   ├── Alias
│       │       │       │   │   │   ├── AbstractAliasEndpoint.php
│       │       │       │   │   │   ├── Delete.php
│       │       │       │   │   │   ├── Exists.php
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   ├── Aliases
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Update.php
│       │       │       │   │   ├── Analyze.php
│       │       │       │   │   ├── Cache
│       │       │       │   │   │   └── Clear.php
│       │       │       │   │   ├── ClearCache.php
│       │       │       │   │   ├── Close.php
│       │       │       │   │   ├── Create.php
│       │       │       │   │   ├── Delete.php
│       │       │       │   │   ├── Exists
│       │       │       │   │   │   └── Types.php
│       │       │       │   │   ├── Exists.php
│       │       │       │   │   ├── Field
│       │       │       │   │   │   └── Get.php
│       │       │       │   │   ├── Flush.php
│       │       │       │   │   ├── ForceMerge.php
│       │       │       │   │   ├── Gateway
│       │       │       │   │   │   └── Snapshot.php
│       │       │       │   │   ├── Get.php
│       │       │       │   │   ├── Mapping
│       │       │       │   │   │   ├── Delete.php
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   ├── GetField.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   ├── Open.php
│       │       │       │   │   ├── Recovery.php
│       │       │       │   │   ├── Refresh.php
│       │       │       │   │   ├── Rollover.php
│       │       │       │   │   ├── Seal.php
│       │       │       │   │   ├── Segments.php
│       │       │       │   │   ├── Settings
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   ├── ShardStores.php
│       │       │       │   │   ├── Shrink.php
│       │       │       │   │   ├── Snapshotindex.php
│       │       │       │   │   ├── Stats.php
│       │       │       │   │   ├── Status.php
│       │       │       │   │   ├── Template
│       │       │       │   │   │   ├── AbstractTemplateEndpoint.php
│       │       │       │   │   │   ├── Delete.php
│       │       │       │   │   │   ├── Exists.php
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   ├── Type
│       │       │       │   │   │   └── Exists.php
│       │       │       │   │   ├── Upgrade
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Post.php
│       │       │       │   │   ├── Validate
│       │       │       │   │   │   └── Query.php
│       │       │       │   │   └── ValidateQuery.php
│       │       │       │   ├── Info.php
│       │       │       │   ├── Ingest
│       │       │       │   │   ├── Pipeline
│       │       │       │   │   │   ├── Delete.php
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Put.php
│       │       │       │   │   └── Simulate.php
│       │       │       │   ├── MPercolate.php
│       │       │       │   ├── MTermVectors.php
│       │       │       │   ├── Mget.php
│       │       │       │   ├── Msearch.php
│       │       │       │   ├── MsearchTemplate.php
│       │       │       │   ├── Percolate.php
│       │       │       │   ├── Ping.php
│       │       │       │   ├── Reindex.php
│       │       │       │   ├── Remote
│       │       │       │   │   └── Info.php
│       │       │       │   ├── RenderSearchTemplate.php
│       │       │       │   ├── Script
│       │       │       │   │   ├── Delete.php
│       │       │       │   │   ├── Get.php
│       │       │       │   │   └── Put.php
│       │       │       │   ├── Scroll.php
│       │       │       │   ├── Search.php
│       │       │       │   ├── SearchShards.php
│       │       │       │   ├── SearchTemplate.php
│       │       │       │   ├── Snapshot
│       │       │       │   │   ├── Create.php
│       │       │       │   │   ├── Delete.php
│       │       │       │   │   ├── Get.php
│       │       │       │   │   ├── Repository
│       │       │       │   │   │   ├── Create.php
│       │       │       │   │   │   ├── Delete.php
│       │       │       │   │   │   ├── Get.php
│       │       │       │   │   │   └── Verify.php
│       │       │       │   │   ├── Restore.php
│       │       │       │   │   └── Status.php
│       │       │       │   ├── Source
│       │       │       │   │   └── Get.php
│       │       │       │   ├── Suggest.php
│       │       │       │   ├── Tasks
│       │       │       │   │   ├── Cancel.php
│       │       │       │   │   ├── Get.php
│       │       │       │   │   └── TasksList.php
│       │       │       │   ├── Template
│       │       │       │   │   ├── Delete.php
│       │       │       │   │   ├── Get.php
│       │       │       │   │   └── Put.php
│       │       │       │   ├── TermVectors.php
│       │       │       │   ├── Update.php
│       │       │       │   └── UpdateByQuery.php
│       │       │       ├── Helper
│       │       │       │   └── Iterators
│       │       │       │       ├── SearchHitIterator.php
│       │       │       │       └── SearchResponseIterator.php
│       │       │       ├── Namespaces
│       │       │       │   ├── AbstractNamespace.php
│       │       │       │   ├── BooleanRequestWrapper.php
│       │       │       │   ├── CatNamespace.php
│       │       │       │   ├── ClusterNamespace.php
│       │       │       │   ├── IndicesNamespace.php
│       │       │       │   ├── IngestNamespace.php
│       │       │       │   ├── NamespaceBuilderInterface.php
│       │       │       │   ├── NodesNamespace.php
│       │       │       │   ├── RemoteNamespace.php
│       │       │       │   ├── SnapshotNamespace.php
│       │       │       │   └── TasksNamespace.php
│       │       │       ├── Serializers
│       │       │       │   ├── ArrayToJSONSerializer.php
│       │       │       │   ├── EverythingToJSONSerializer.php
│       │       │       │   ├── SerializerInterface.php
│       │       │       │   └── SmartSerializer.php
│       │       │       └── Transport.php
│       │       ├── travis
│       │       │   ├── download_and_run_es.sh
│       │       │   └── generate_docs.sh
│       │       └── util
│       │           ├── EnsureClusterAlive.php
│       │           ├── RestSpecRunner.php
│       │           ├── SpecParser.php
│       │           ├── docsConfig.php
│       │           ├── docstheme
│       │           │   ├── layout
│       │           │   │   └── base.twig
│       │           │   ├── macros.twig
│       │           │   ├── manifest.yml
│       │           │   └── pages
│       │           │       ├── class.twig
│       │           │       ├── classes.twig
│       │           │       ├── interfaces.twig
│       │           │       └── namespaces.twig
│       │           └── templates
│       │               └── endpoint.twig
│       ├── ezyang
│       │   └── htmlpurifier
│       │       ├── CREDITS
│       │       ├── INSTALL
│       │       ├── INSTALL.fr.utf8
│       │       ├── LICENSE
│       │       ├── NEWS
│       │       ├── README.md
│       │       ├── TODO
│       │       ├── VERSION
│       │       ├── WHATSNEW
│       │       ├── WYSIWYG
│       │       ├── extras
│       │       │   ├── ConfigDoc
│       │       │   │   └── HTMLXSLTProcessor.php
│       │       │   ├── FSTools
│       │       │   │   └── File.php
│       │       │   ├── FSTools.php
│       │       │   ├── HTMLPurifierExtras.auto.php
│       │       │   ├── HTMLPurifierExtras.autoload.php
│       │       │   ├── HTMLPurifierExtras.php
│       │       │   └── README
│       │       ├── library
│       │       │   ├── HTMLPurifier
│       │       │   │   ├── Arborize.php
│       │       │   │   ├── AttrCollections.php
│       │       │   │   ├── AttrDef
│       │       │   │   │   ├── CSS
│       │       │   │   │   │   ├── AlphaValue.php
│       │       │   │   │   │   ├── Background.php
│       │       │   │   │   │   ├── BackgroundPosition.php
│       │       │   │   │   │   ├── Border.php
│       │       │   │   │   │   ├── Color.php
│       │       │   │   │   │   ├── Composite.php
│       │       │   │   │   │   ├── DenyElementDecorator.php
│       │       │   │   │   │   ├── Filter.php
│       │       │   │   │   │   ├── Font.php
│       │       │   │   │   │   ├── FontFamily.php
│       │       │   │   │   │   ├── Ident.php
│       │       │   │   │   │   ├── ImportantDecorator.php
│       │       │   │   │   │   ├── Length.php
│       │       │   │   │   │   ├── ListStyle.php
│       │       │   │   │   │   ├── Multiple.php
│       │       │   │   │   │   ├── Number.php
│       │       │   │   │   │   ├── Percentage.php
│       │       │   │   │   │   ├── TextDecoration.php
│       │       │   │   │   │   └── URI.php
│       │       │   │   │   ├── CSS.php
│       │       │   │   │   ├── Clone.php
│       │       │   │   │   ├── Enum.php
│       │       │   │   │   ├── HTML
│       │       │   │   │   │   ├── Bool.php
│       │       │   │   │   │   ├── Class.php
│       │       │   │   │   │   ├── Color.php
│       │       │   │   │   │   ├── FrameTarget.php
│       │       │   │   │   │   ├── ID.php
│       │       │   │   │   │   ├── Length.php
│       │       │   │   │   │   ├── LinkTypes.php
│       │       │   │   │   │   ├── MultiLength.php
│       │       │   │   │   │   ├── Nmtokens.php
│       │       │   │   │   │   └── Pixels.php
│       │       │   │   │   ├── Integer.php
│       │       │   │   │   ├── Lang.php
│       │       │   │   │   ├── Switch.php
│       │       │   │   │   ├── Text.php
│       │       │   │   │   ├── URI
│       │       │   │   │   │   ├── Email
│       │       │   │   │   │   │   └── SimpleCheck.php
│       │       │   │   │   │   ├── Email.php
│       │       │   │   │   │   ├── Host.php
│       │       │   │   │   │   ├── IPv4.php
│       │       │   │   │   │   └── IPv6.php
│       │       │   │   │   └── URI.php
│       │       │   │   ├── AttrDef.php
│       │       │   │   ├── AttrTransform
│       │       │   │   │   ├── Background.php
│       │       │   │   │   ├── BdoDir.php
│       │       │   │   │   ├── BgColor.php
│       │       │   │   │   ├── BoolToCSS.php
│       │       │   │   │   ├── Border.php
│       │       │   │   │   ├── EnumToCSS.php
│       │       │   │   │   ├── ImgRequired.php
│       │       │   │   │   ├── ImgSpace.php
│       │       │   │   │   ├── Input.php
│       │       │   │   │   ├── Lang.php
│       │       │   │   │   ├── Length.php
│       │       │   │   │   ├── Name.php
│       │       │   │   │   ├── NameSync.php
│       │       │   │   │   ├── Nofollow.php
│       │       │   │   │   ├── SafeEmbed.php
│       │       │   │   │   ├── SafeObject.php
│       │       │   │   │   ├── SafeParam.php
│       │       │   │   │   ├── ScriptRequired.php
│       │       │   │   │   ├── TargetBlank.php
│       │       │   │   │   ├── TargetNoopener.php
│       │       │   │   │   ├── TargetNoreferrer.php
│       │       │   │   │   └── Textarea.php
│       │       │   │   ├── AttrTransform.php
│       │       │   │   ├── AttrTypes.php
│       │       │   │   ├── AttrValidator.php
│       │       │   │   ├── Bootstrap.php
│       │       │   │   ├── CSSDefinition.php
│       │       │   │   ├── ChildDef
│       │       │   │   │   ├── Chameleon.php
│       │       │   │   │   ├── Custom.php
│       │       │   │   │   ├── Empty.php
│       │       │   │   │   ├── List.php
│       │       │   │   │   ├── Optional.php
│       │       │   │   │   ├── Required.php
│       │       │   │   │   ├── StrictBlockquote.php
│       │       │   │   │   └── Table.php
│       │       │   │   ├── ChildDef.php
│       │       │   │   ├── Config.php
│       │       │   │   ├── ConfigSchema
│       │       │   │   │   ├── Builder
│       │       │   │   │   │   ├── ConfigSchema.php
│       │       │   │   │   │   └── Xml.php
│       │       │   │   │   ├── Exception.php
│       │       │   │   │   ├── Interchange
│       │       │   │   │   │   ├── Directive.php
│       │       │   │   │   │   └── Id.php
│       │       │   │   │   ├── Interchange.php
│       │       │   │   │   ├── InterchangeBuilder.php
│       │       │   │   │   ├── Validator.php
│       │       │   │   │   ├── ValidatorAtom.php
│       │       │   │   │   ├── schema
│       │       │   │   │   │   ├── Attr.AllowedClasses.txt
│       │       │   │   │   │   ├── Attr.AllowedFrameTargets.txt
│       │       │   │   │   │   ├── Attr.AllowedRel.txt
│       │       │   │   │   │   ├── Attr.AllowedRev.txt
│       │       │   │   │   │   ├── Attr.ClassUseCDATA.txt
│       │       │   │   │   │   ├── Attr.DefaultImageAlt.txt
│       │       │   │   │   │   ├── Attr.DefaultInvalidImage.txt
│       │       │   │   │   │   ├── Attr.DefaultInvalidImageAlt.txt
│       │       │   │   │   │   ├── Attr.DefaultTextDir.txt
│       │       │   │   │   │   ├── Attr.EnableID.txt
│       │       │   │   │   │   ├── Attr.ForbiddenClasses.txt
│       │       │   │   │   │   ├── Attr.ID.HTML5.txt
│       │       │   │   │   │   ├── Attr.IDBlacklist.txt
│       │       │   │   │   │   ├── Attr.IDBlacklistRegexp.txt
│       │       │   │   │   │   ├── Attr.IDPrefix.txt
│       │       │   │   │   │   ├── Attr.IDPrefixLocal.txt
│       │       │   │   │   │   ├── AutoFormat.AutoParagraph.txt
│       │       │   │   │   │   ├── AutoFormat.Custom.txt
│       │       │   │   │   │   ├── AutoFormat.DisplayLinkURI.txt
│       │       │   │   │   │   ├── AutoFormat.Linkify.txt
│       │       │   │   │   │   ├── AutoFormat.PurifierLinkify.DocURL.txt
│       │       │   │   │   │   ├── AutoFormat.PurifierLinkify.txt
│       │       │   │   │   │   ├── AutoFormat.RemoveEmpty.Predicate.txt
│       │       │   │   │   │   ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt
│       │       │   │   │   │   ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt
│       │       │   │   │   │   ├── AutoFormat.RemoveEmpty.txt
│       │       │   │   │   │   ├── AutoFormat.RemoveSpansWithoutAttributes.txt
│       │       │   │   │   │   ├── CSS.AllowDuplicates.txt
│       │       │   │   │   │   ├── CSS.AllowImportant.txt
│       │       │   │   │   │   ├── CSS.AllowTricky.txt
│       │       │   │   │   │   ├── CSS.AllowedFonts.txt
│       │       │   │   │   │   ├── CSS.AllowedProperties.txt
│       │       │   │   │   │   ├── CSS.DefinitionRev.txt
│       │       │   │   │   │   ├── CSS.ForbiddenProperties.txt
│       │       │   │   │   │   ├── CSS.MaxImgLength.txt
│       │       │   │   │   │   ├── CSS.Proprietary.txt
│       │       │   │   │   │   ├── CSS.Trusted.txt
│       │       │   │   │   │   ├── Cache.DefinitionImpl.txt
│       │       │   │   │   │   ├── Cache.SerializerPath.txt
│       │       │   │   │   │   ├── Cache.SerializerPermissions.txt
│       │       │   │   │   │   ├── Core.AggressivelyFixLt.txt
│       │       │   │   │   │   ├── Core.AggressivelyRemoveScript.txt
│       │       │   │   │   │   ├── Core.AllowHostnameUnderscore.txt
│       │       │   │   │   │   ├── Core.CollectErrors.txt
│       │       │   │   │   │   ├── Core.ColorKeywords.txt
│       │       │   │   │   │   ├── Core.ConvertDocumentToFragment.txt
│       │       │   │   │   │   ├── Core.DirectLexLineNumberSyncInterval.txt
│       │       │   │   │   │   ├── Core.DisableExcludes.txt
│       │       │   │   │   │   ├── Core.EnableIDNA.txt
│       │       │   │   │   │   ├── Core.Encoding.txt
│       │       │   │   │   │   ├── Core.EscapeInvalidChildren.txt
│       │       │   │   │   │   ├── Core.EscapeInvalidTags.txt
│       │       │   │   │   │   ├── Core.EscapeNonASCIICharacters.txt
│       │       │   │   │   │   ├── Core.HiddenElements.txt
│       │       │   │   │   │   ├── Core.Language.txt
│       │       │   │   │   │   ├── Core.LegacyEntityDecoder.txt
│       │       │   │   │   │   ├── Core.LexerImpl.txt
│       │       │   │   │   │   ├── Core.MaintainLineNumbers.txt
│       │       │   │   │   │   ├── Core.NormalizeNewlines.txt
│       │       │   │   │   │   ├── Core.RemoveInvalidImg.txt
│       │       │   │   │   │   ├── Core.RemoveProcessingInstructions.txt
│       │       │   │   │   │   ├── Core.RemoveScriptContents.txt
│       │       │   │   │   │   ├── Filter.Custom.txt
│       │       │   │   │   │   ├── Filter.ExtractStyleBlocks.Escaping.txt
│       │       │   │   │   │   ├── Filter.ExtractStyleBlocks.Scope.txt
│       │       │   │   │   │   ├── Filter.ExtractStyleBlocks.TidyImpl.txt
│       │       │   │   │   │   ├── Filter.ExtractStyleBlocks.txt
│       │       │   │   │   │   ├── Filter.YouTube.txt
│       │       │   │   │   │   ├── HTML.Allowed.txt
│       │       │   │   │   │   ├── HTML.AllowedAttributes.txt
│       │       │   │   │   │   ├── HTML.AllowedComments.txt
│       │       │   │   │   │   ├── HTML.AllowedCommentsRegexp.txt
│       │       │   │   │   │   ├── HTML.AllowedElements.txt
│       │       │   │   │   │   ├── HTML.AllowedModules.txt
│       │       │   │   │   │   ├── HTML.Attr.Name.UseCDATA.txt
│       │       │   │   │   │   ├── HTML.BlockWrapper.txt
│       │       │   │   │   │   ├── HTML.CoreModules.txt
│       │       │   │   │   │   ├── HTML.CustomDoctype.txt
│       │       │   │   │   │   ├── HTML.DefinitionID.txt
│       │       │   │   │   │   ├── HTML.DefinitionRev.txt
│       │       │   │   │   │   ├── HTML.Doctype.txt
│       │       │   │   │   │   ├── HTML.FlashAllowFullScreen.txt
│       │       │   │   │   │   ├── HTML.ForbiddenAttributes.txt
│       │       │   │   │   │   ├── HTML.ForbiddenElements.txt
│       │       │   │   │   │   ├── HTML.MaxImgLength.txt
│       │       │   │   │   │   ├── HTML.Nofollow.txt
│       │       │   │   │   │   ├── HTML.Parent.txt
│       │       │   │   │   │   ├── HTML.Proprietary.txt
│       │       │   │   │   │   ├── HTML.SafeEmbed.txt
│       │       │   │   │   │   ├── HTML.SafeIframe.txt
│       │       │   │   │   │   ├── HTML.SafeObject.txt
│       │       │   │   │   │   ├── HTML.SafeScripting.txt
│       │       │   │   │   │   ├── HTML.Strict.txt
│       │       │   │   │   │   ├── HTML.TargetBlank.txt
│       │       │   │   │   │   ├── HTML.TargetNoopener.txt
│       │       │   │   │   │   ├── HTML.TargetNoreferrer.txt
│       │       │   │   │   │   ├── HTML.TidyAdd.txt
│       │       │   │   │   │   ├── HTML.TidyLevel.txt
│       │       │   │   │   │   ├── HTML.TidyRemove.txt
│       │       │   │   │   │   ├── HTML.Trusted.txt
│       │       │   │   │   │   ├── HTML.XHTML.txt
│       │       │   │   │   │   ├── Output.CommentScriptContents.txt
│       │       │   │   │   │   ├── Output.FixInnerHTML.txt
│       │       │   │   │   │   ├── Output.FlashCompat.txt
│       │       │   │   │   │   ├── Output.Newline.txt
│       │       │   │   │   │   ├── Output.SortAttr.txt
│       │       │   │   │   │   ├── Output.TidyFormat.txt
│       │       │   │   │   │   ├── Test.ForceNoIconv.txt
│       │       │   │   │   │   ├── URI.AllowedSchemes.txt
│       │       │   │   │   │   ├── URI.Base.txt
│       │       │   │   │   │   ├── URI.DefaultScheme.txt
│       │       │   │   │   │   ├── URI.DefinitionID.txt
│       │       │   │   │   │   ├── URI.DefinitionRev.txt
│       │       │   │   │   │   ├── URI.Disable.txt
│       │       │   │   │   │   ├── URI.DisableExternal.txt
│       │       │   │   │   │   ├── URI.DisableExternalResources.txt
│       │       │   │   │   │   ├── URI.DisableResources.txt
│       │       │   │   │   │   ├── URI.Host.txt
│       │       │   │   │   │   ├── URI.HostBlacklist.txt
│       │       │   │   │   │   ├── URI.MakeAbsolute.txt
│       │       │   │   │   │   ├── URI.Munge.txt
│       │       │   │   │   │   ├── URI.MungeResources.txt
│       │       │   │   │   │   ├── URI.MungeSecretKey.txt
│       │       │   │   │   │   ├── URI.OverrideAllowedSchemes.txt
│       │       │   │   │   │   ├── URI.SafeIframeRegexp.txt
│       │       │   │   │   │   └── info.ini
│       │       │   │   │   └── schema.ser
│       │       │   │   ├── ConfigSchema.php
│       │       │   │   ├── ContentSets.php
│       │       │   │   ├── Context.php
│       │       │   │   ├── Definition.php
│       │       │   │   ├── DefinitionCache
│       │       │   │   │   ├── Decorator
│       │       │   │   │   │   ├── Cleanup.php
│       │       │   │   │   │   ├── Memory.php
│       │       │   │   │   │   └── Template.php.in
│       │       │   │   │   ├── Decorator.php
│       │       │   │   │   ├── Null.php
│       │       │   │   │   ├── Serializer
│       │       │   │   │   │   └── README
│       │       │   │   │   └── Serializer.php
│       │       │   │   ├── DefinitionCache.php
│       │       │   │   ├── DefinitionCacheFactory.php
│       │       │   │   ├── Doctype.php
│       │       │   │   ├── DoctypeRegistry.php
│       │       │   │   ├── ElementDef.php
│       │       │   │   ├── Encoder.php
│       │       │   │   ├── EntityLookup
│       │       │   │   │   └── entities.ser
│       │       │   │   ├── EntityLookup.php
│       │       │   │   ├── EntityParser.php
│       │       │   │   ├── ErrorCollector.php
│       │       │   │   ├── ErrorStruct.php
│       │       │   │   ├── Exception.php
│       │       │   │   ├── Filter
│       │       │   │   │   ├── ExtractStyleBlocks.php
│       │       │   │   │   └── YouTube.php
│       │       │   │   ├── Filter.php
│       │       │   │   ├── Generator.php
│       │       │   │   ├── HTMLDefinition.php
│       │       │   │   ├── HTMLModule
│       │       │   │   │   ├── Bdo.php
│       │       │   │   │   ├── CommonAttributes.php
│       │       │   │   │   ├── Edit.php
│       │       │   │   │   ├── Forms.php
│       │       │   │   │   ├── Hypertext.php
│       │       │   │   │   ├── Iframe.php
│       │       │   │   │   ├── Image.php
│       │       │   │   │   ├── Legacy.php
│       │       │   │   │   ├── List.php
│       │       │   │   │   ├── Name.php
│       │       │   │   │   ├── Nofollow.php
│       │       │   │   │   ├── NonXMLCommonAttributes.php
│       │       │   │   │   ├── Object.php
│       │       │   │   │   ├── Presentation.php
│       │       │   │   │   ├── Proprietary.php
│       │       │   │   │   ├── Ruby.php
│       │       │   │   │   ├── SafeEmbed.php
│       │       │   │   │   ├── SafeObject.php
│       │       │   │   │   ├── SafeScripting.php
│       │       │   │   │   ├── Scripting.php
│       │       │   │   │   ├── StyleAttribute.php
│       │       │   │   │   ├── Tables.php
│       │       │   │   │   ├── Target.php
│       │       │   │   │   ├── TargetBlank.php
│       │       │   │   │   ├── TargetNoopener.php
│       │       │   │   │   ├── TargetNoreferrer.php
│       │       │   │   │   ├── Text.php
│       │       │   │   │   ├── Tidy
│       │       │   │   │   │   ├── Name.php
│       │       │   │   │   │   ├── Proprietary.php
│       │       │   │   │   │   ├── Strict.php
│       │       │   │   │   │   ├── Transitional.php
│       │       │   │   │   │   ├── XHTML.php
│       │       │   │   │   │   └── XHTMLAndHTML4.php
│       │       │   │   │   ├── Tidy.php
│       │       │   │   │   └── XMLCommonAttributes.php
│       │       │   │   ├── HTMLModule.php
│       │       │   │   ├── HTMLModuleManager.php
│       │       │   │   ├── IDAccumulator.php
│       │       │   │   ├── Injector
│       │       │   │   │   ├── AutoParagraph.php
│       │       │   │   │   ├── DisplayLinkURI.php
│       │       │   │   │   ├── Linkify.php
│       │       │   │   │   ├── PurifierLinkify.php
│       │       │   │   │   ├── RemoveEmpty.php
│       │       │   │   │   ├── RemoveSpansWithoutAttributes.php
│       │       │   │   │   └── SafeObject.php
│       │       │   │   ├── Injector.php
│       │       │   │   ├── Language
│       │       │   │   │   ├── classes
│       │       │   │   │   │   └── en-x-test.php
│       │       │   │   │   └── messages
│       │       │   │   │       ├── en-x-test.php
│       │       │   │   │       ├── en-x-testmini.php
│       │       │   │   │       └── en.php
│       │       │   │   ├── Language.php
│       │       │   │   ├── LanguageFactory.php
│       │       │   │   ├── Length.php
│       │       │   │   ├── Lexer
│       │       │   │   │   ├── DOMLex.php
│       │       │   │   │   ├── DirectLex.php
│       │       │   │   │   └── PH5P.php
│       │       │   │   ├── Lexer.php
│       │       │   │   ├── Node
│       │       │   │   │   ├── Comment.php
│       │       │   │   │   ├── Element.php
│       │       │   │   │   └── Text.php
│       │       │   │   ├── Node.php
│       │       │   │   ├── PercentEncoder.php
│       │       │   │   ├── Printer
│       │       │   │   │   ├── CSSDefinition.php
│       │       │   │   │   ├── ConfigForm.css
│       │       │   │   │   ├── ConfigForm.js
│       │       │   │   │   ├── ConfigForm.php
│       │       │   │   │   └── HTMLDefinition.php
│       │       │   │   ├── Printer.php
│       │       │   │   ├── PropertyList.php
│       │       │   │   ├── PropertyListIterator.php
│       │       │   │   ├── Queue.php
│       │       │   │   ├── Strategy
│       │       │   │   │   ├── Composite.php
│       │       │   │   │   ├── Core.php
│       │       │   │   │   ├── FixNesting.php
│       │       │   │   │   ├── MakeWellFormed.php
│       │       │   │   │   ├── RemoveForeignElements.php
│       │       │   │   │   └── ValidateAttributes.php
│       │       │   │   ├── Strategy.php
│       │       │   │   ├── StringHash.php
│       │       │   │   ├── StringHashParser.php
│       │       │   │   ├── TagTransform
│       │       │   │   │   ├── Font.php
│       │       │   │   │   └── Simple.php
│       │       │   │   ├── TagTransform.php
│       │       │   │   ├── Token
│       │       │   │   │   ├── Comment.php
│       │       │   │   │   ├── Empty.php
│       │       │   │   │   ├── End.php
│       │       │   │   │   ├── Start.php
│       │       │   │   │   ├── Tag.php
│       │       │   │   │   └── Text.php
│       │       │   │   ├── Token.php
│       │       │   │   ├── TokenFactory.php
│       │       │   │   ├── URI.php
│       │       │   │   ├── URIDefinition.php
│       │       │   │   ├── URIFilter
│       │       │   │   │   ├── DisableExternal.php
│       │       │   │   │   ├── DisableExternalResources.php
│       │       │   │   │   ├── DisableResources.php
│       │       │   │   │   ├── HostBlacklist.php
│       │       │   │   │   ├── MakeAbsolute.php
│       │       │   │   │   ├── Munge.php
│       │       │   │   │   └── SafeIframe.php
│       │       │   │   ├── URIFilter.php
│       │       │   │   ├── URIParser.php
│       │       │   │   ├── URIScheme
│       │       │   │   │   ├── data.php
│       │       │   │   │   ├── file.php
│       │       │   │   │   ├── ftp.php
│       │       │   │   │   ├── http.php
│       │       │   │   │   ├── https.php
│       │       │   │   │   ├── mailto.php
│       │       │   │   │   ├── news.php
│       │       │   │   │   ├── nntp.php
│       │       │   │   │   └── tel.php
│       │       │   │   ├── URIScheme.php
│       │       │   │   ├── URISchemeRegistry.php
│       │       │   │   ├── UnitConverter.php
│       │       │   │   ├── VarParser
│       │       │   │   │   ├── Flexible.php
│       │       │   │   │   └── Native.php
│       │       │   │   ├── VarParser.php
│       │       │   │   ├── VarParserException.php
│       │       │   │   └── Zipper.php
│       │       │   ├── HTMLPurifier.auto.php
│       │       │   ├── HTMLPurifier.autoload.php
│       │       │   ├── HTMLPurifier.composer.php
│       │       │   ├── HTMLPurifier.func.php
│       │       │   ├── HTMLPurifier.includes.php
│       │       │   ├── HTMLPurifier.kses.php
│       │       │   ├── HTMLPurifier.path.php
│       │       │   ├── HTMLPurifier.php
│       │       │   └── HTMLPurifier.safe-includes.php
│       │       ├── maintenance
│       │       │   ├── PH5P.patch
│       │       │   ├── PH5P.php
│       │       │   ├── add-vimline.php
│       │       │   ├── common.php
│       │       │   ├── compile-doxygen.sh
│       │       │   ├── config-scanner.php
│       │       │   ├── flush-definition-cache.php
│       │       │   ├── flush.php
│       │       │   ├── generate-entity-file.php
│       │       │   ├── generate-includes.php
│       │       │   ├── generate-ph5p-patch.php
│       │       │   ├── generate-schema-cache.php
│       │       │   ├── generate-standalone.php
│       │       │   ├── merge-library.php
│       │       │   ├── old-extract-schema.php
│       │       │   ├── old-remove-require-once.php
│       │       │   ├── old-remove-schema-def.php
│       │       │   ├── regenerate-docs.sh
│       │       │   ├── remove-trailing-whitespace.php
│       │       │   ├── rename-config.php
│       │       │   └── update-config.php
│       │       ├── package.php
│       │       ├── phpdoc.ini
│       │       ├── plugins
│       │       │   ├── modx.txt
│       │       │   └── phorum
│       │       │       ├── Changelog
│       │       │       ├── INSTALL
│       │       │       ├── README
│       │       │       ├── config.default.php
│       │       │       ├── htmlpurifier.php
│       │       │       ├── info.txt
│       │       │       ├── init-config.php
│       │       │       ├── migrate.bbcode.php
│       │       │       ├── settings
│       │       │       │   ├── form.php
│       │       │       │   ├── migrate-sigs-form.php
│       │       │       │   ├── migrate-sigs.php
│       │       │       │   └── save.php
│       │       │       └── settings.php
│       │       ├── release1-update.php
│       │       ├── release2-tag.php
│       │       └── test-settings.sample.php
│       ├── guzzlehttp
│       │   ├── guzzle
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Dockerfile
│       │   │   ├── LICENSE
│       │   │   ├── Makefile
│       │   │   ├── README.md
│       │   │   ├── UPGRADING.md
│       │   │   ├── build
│       │   │   │   ├── Burgomaster.php
│       │   │   │   └── packager.php
│       │   │   ├── docs
│       │   │   │   ├── Makefile
│       │   │   │   ├── _static
│       │   │   │   │   ├── guzzle-icon.png
│       │   │   │   │   └── logo.png
│       │   │   │   ├── conf.py
│       │   │   │   ├── faq.rst
│       │   │   │   ├── handlers-and-middleware.rst
│       │   │   │   ├── index.rst
│       │   │   │   ├── overview.rst
│       │   │   │   ├── psr7.rst
│       │   │   │   ├── quickstart.rst
│       │   │   │   ├── request-options.rst
│       │   │   │   ├── requirements.txt
│       │   │   │   └── testing.rst
│       │   │   ├── phpstan-baseline.neon
│       │   │   ├── phpstan.neon.dist
│       │   │   └── src
│       │   │       ├── Client.php
│       │   │       ├── ClientInterface.php
│       │   │       ├── Cookie
│       │   │       │   ├── CookieJar.php
│       │   │       │   ├── CookieJarInterface.php
│       │   │       │   ├── FileCookieJar.php
│       │   │       │   ├── SessionCookieJar.php
│       │   │       │   └── SetCookie.php
│       │   │       ├── Exception
│       │   │       │   ├── BadResponseException.php
│       │   │       │   ├── ClientException.php
│       │   │       │   ├── ConnectException.php
│       │   │       │   ├── GuzzleException.php
│       │   │       │   ├── InvalidArgumentException.php
│       │   │       │   ├── RequestException.php
│       │   │       │   ├── SeekException.php
│       │   │       │   ├── ServerException.php
│       │   │       │   ├── TooManyRedirectsException.php
│       │   │       │   └── TransferException.php
│       │   │       ├── Handler
│       │   │       │   ├── CurlFactory.php
│       │   │       │   ├── CurlFactoryInterface.php
│       │   │       │   ├── CurlHandler.php
│       │   │       │   ├── CurlMultiHandler.php
│       │   │       │   ├── EasyHandle.php
│       │   │       │   ├── MockHandler.php
│       │   │       │   ├── Proxy.php
│       │   │       │   └── StreamHandler.php
│       │   │       ├── HandlerStack.php
│       │   │       ├── MessageFormatter.php
│       │   │       ├── Middleware.php
│       │   │       ├── Pool.php
│       │   │       ├── PrepareBodyMiddleware.php
│       │   │       ├── RedirectMiddleware.php
│       │   │       ├── RequestOptions.php
│       │   │       ├── RetryMiddleware.php
│       │   │       ├── TransferStats.php
│       │   │       ├── UriTemplate.php
│       │   │       ├── Utils.php
│       │   │       ├── functions.php
│       │   │       └── functions_include.php
│       │   ├── promises
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── Makefile
│       │   │   ├── README.md
│       │   │   └── src
│       │   │       ├── AggregateException.php
│       │   │       ├── CancellationException.php
│       │   │       ├── Coroutine.php
│       │   │       ├── Create.php
│       │   │       ├── Each.php
│       │   │       ├── EachPromise.php
│       │   │       ├── FulfilledPromise.php
│       │   │       ├── Is.php
│       │   │       ├── Promise.php
│       │   │       ├── PromiseInterface.php
│       │   │       ├── PromisorInterface.php
│       │   │       ├── RejectedPromise.php
│       │   │       ├── RejectionException.php
│       │   │       ├── TaskQueue.php
│       │   │       ├── TaskQueueInterface.php
│       │   │       ├── Utils.php
│       │   │       ├── functions.php
│       │   │       └── functions_include.php
│       │   ├── psr7
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── Makefile
│       │   │   ├── README.md
│       │   │   └── src
│       │   │       ├── AppendStream.php
│       │   │       ├── BufferStream.php
│       │   │       ├── CachingStream.php
│       │   │       ├── DroppingStream.php
│       │   │       ├── FnStream.php
│       │   │       ├── Header.php
│       │   │       ├── InflateStream.php
│       │   │       ├── LazyOpenStream.php
│       │   │       ├── LimitStream.php
│       │   │       ├── Message.php
│       │   │       ├── MessageTrait.php
│       │   │       ├── MimeType.php
│       │   │       ├── MultipartStream.php
│       │   │       ├── NoSeekStream.php
│       │   │       ├── PumpStream.php
│       │   │       ├── Query.php
│       │   │       ├── Request.php
│       │   │       ├── Response.php
│       │   │       ├── Rfc7230.php
│       │   │       ├── ServerRequest.php
│       │   │       ├── Stream.php
│       │   │       ├── StreamDecoratorTrait.php
│       │   │       ├── StreamWrapper.php
│       │   │       ├── UploadedFile.php
│       │   │       ├── Uri.php
│       │   │       ├── UriNormalizer.php
│       │   │       ├── UriResolver.php
│       │   │       ├── Utils.php
│       │   │       ├── functions.php
│       │   │       └── functions_include.php
│       │   ├── ringphp
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── Makefile
│       │   │   ├── README.rst
│       │   │   ├── docs
│       │   │   │   ├── Makefile
│       │   │   │   ├── client_handlers.rst
│       │   │   │   ├── client_middleware.rst
│       │   │   │   ├── conf.py
│       │   │   │   ├── futures.rst
│       │   │   │   ├── index.rst
│       │   │   │   ├── requirements.txt
│       │   │   │   ├── spec.rst
│       │   │   │   └── testing.rst
│       │   │   └── src
│       │   │       ├── Client
│       │   │       │   ├── ClientUtils.php
│       │   │       │   ├── CurlFactory.php
│       │   │       │   ├── CurlHandler.php
│       │   │       │   ├── CurlMultiHandler.php
│       │   │       │   ├── Middleware.php
│       │   │       │   ├── MockHandler.php
│       │   │       │   └── StreamHandler.php
│       │   │       ├── Core.php
│       │   │       ├── Exception
│       │   │       │   ├── CancelledException.php
│       │   │       │   ├── CancelledFutureAccessException.php
│       │   │       │   ├── ConnectException.php
│       │   │       │   └── RingException.php
│       │   │       └── Future
│       │   │           ├── BaseFutureTrait.php
│       │   │           ├── CompletedFutureArray.php
│       │   │           ├── CompletedFutureValue.php
│       │   │           ├── FutureArray.php
│       │   │           ├── FutureArrayInterface.php
│       │   │           ├── FutureInterface.php
│       │   │           ├── FutureValue.php
│       │   │           └── MagicFutureTrait.php
│       │   └── streams
│       │       ├── CHANGELOG.rst
│       │       ├── LICENSE
│       │       ├── Makefile
│       │       ├── README.rst
│       │       └── src
│       │           ├── AppendStream.php
│       │           ├── AsyncReadStream.php
│       │           ├── BufferStream.php
│       │           ├── CachingStream.php
│       │           ├── DroppingStream.php
│       │           ├── Exception
│       │           │   ├── CannotAttachException.php
│       │           │   └── SeekException.php
│       │           ├── FnStream.php
│       │           ├── GuzzleStreamWrapper.php
│       │           ├── InflateStream.php
│       │           ├── LazyOpenStream.php
│       │           ├── LimitStream.php
│       │           ├── MetadataStreamInterface.php
│       │           ├── NoSeekStream.php
│       │           ├── NullStream.php
│       │           ├── PumpStream.php
│       │           ├── Stream.php
│       │           ├── StreamDecoratorTrait.php
│       │           ├── StreamInterface.php
│       │           └── Utils.php
│       ├── intervention
│       │   └── image
│       │       ├── LICENSE
│       │       ├── provides.json
│       │       └── src
│       │           ├── Intervention
│       │           │   └── Image
│       │           │       ├── AbstractColor.php
│       │           │       ├── AbstractDecoder.php
│       │           │       ├── AbstractDriver.php
│       │           │       ├── AbstractEncoder.php
│       │           │       ├── AbstractFont.php
│       │           │       ├── AbstractShape.php
│       │           │       ├── Commands
│       │           │       │   ├── AbstractCommand.php
│       │           │       │   ├── Argument.php
│       │           │       │   ├── ChecksumCommand.php
│       │           │       │   ├── CircleCommand.php
│       │           │       │   ├── EllipseCommand.php
│       │           │       │   ├── ExifCommand.php
│       │           │       │   ├── IptcCommand.php
│       │           │       │   ├── LineCommand.php
│       │           │       │   ├── OrientateCommand.php
│       │           │       │   ├── PolygonCommand.php
│       │           │       │   ├── PsrResponseCommand.php
│       │           │       │   ├── RectangleCommand.php
│       │           │       │   ├── ResponseCommand.php
│       │           │       │   ├── StreamCommand.php
│       │           │       │   └── TextCommand.php
│       │           │       ├── Constraint.php
│       │           │       ├── Exception
│       │           │       │   ├── ImageException.php
│       │           │       │   ├── InvalidArgumentException.php
│       │           │       │   ├── MissingDependencyException.php
│       │           │       │   ├── NotFoundException.php
│       │           │       │   ├── NotReadableException.php
│       │           │       │   ├── NotSupportedException.php
│       │           │       │   ├── NotWritableException.php
│       │           │       │   └── RuntimeException.php
│       │           │       ├── Facades
│       │           │       │   └── Image.php
│       │           │       ├── File.php
│       │           │       ├── Filters
│       │           │       │   ├── DemoFilter.php
│       │           │       │   └── FilterInterface.php
│       │           │       ├── Gd
│       │           │       │   ├── Color.php
│       │           │       │   ├── Commands
│       │           │       │   │   ├── BackupCommand.php
│       │           │       │   │   ├── BlurCommand.php
│       │           │       │   │   ├── BrightnessCommand.php
│       │           │       │   │   ├── ColorizeCommand.php
│       │           │       │   │   ├── ContrastCommand.php
│       │           │       │   │   ├── CropCommand.php
│       │           │       │   │   ├── DestroyCommand.php
│       │           │       │   │   ├── FillCommand.php
│       │           │       │   │   ├── FitCommand.php
│       │           │       │   │   ├── FlipCommand.php
│       │           │       │   │   ├── GammaCommand.php
│       │           │       │   │   ├── GetSizeCommand.php
│       │           │       │   │   ├── GreyscaleCommand.php
│       │           │       │   │   ├── HeightenCommand.php
│       │           │       │   │   ├── InsertCommand.php
│       │           │       │   │   ├── InterlaceCommand.php
│       │           │       │   │   ├── InvertCommand.php
│       │           │       │   │   ├── LimitColorsCommand.php
│       │           │       │   │   ├── MaskCommand.php
│       │           │       │   │   ├── OpacityCommand.php
│       │           │       │   │   ├── PickColorCommand.php
│       │           │       │   │   ├── PixelCommand.php
│       │           │       │   │   ├── PixelateCommand.php
│       │           │       │   │   ├── ResetCommand.php
│       │           │       │   │   ├── ResizeCanvasCommand.php
│       │           │       │   │   ├── ResizeCommand.php
│       │           │       │   │   ├── RotateCommand.php
│       │           │       │   │   ├── SharpenCommand.php
│       │           │       │   │   ├── TrimCommand.php
│       │           │       │   │   └── WidenCommand.php
│       │           │       │   ├── Decoder.php
│       │           │       │   ├── Driver.php
│       │           │       │   ├── Encoder.php
│       │           │       │   ├── Font.php
│       │           │       │   └── Shapes
│       │           │       │       ├── CircleShape.php
│       │           │       │       ├── EllipseShape.php
│       │           │       │       ├── LineShape.php
│       │           │       │       ├── PolygonShape.php
│       │           │       │       └── RectangleShape.php
│       │           │       ├── Image.php
│       │           │       ├── ImageManager.php
│       │           │       ├── ImageManagerStatic.php
│       │           │       ├── ImageServiceProvider.php
│       │           │       ├── ImageServiceProviderLaravel4.php
│       │           │       ├── ImageServiceProviderLaravelRecent.php
│       │           │       ├── ImageServiceProviderLeague.php
│       │           │       ├── ImageServiceProviderLumen.php
│       │           │       ├── Imagick
│       │           │       │   ├── Color.php
│       │           │       │   ├── Commands
│       │           │       │   │   ├── BackupCommand.php
│       │           │       │   │   ├── BlurCommand.php
│       │           │       │   │   ├── BrightnessCommand.php
│       │           │       │   │   ├── ColorizeCommand.php
│       │           │       │   │   ├── ContrastCommand.php
│       │           │       │   │   ├── CropCommand.php
│       │           │       │   │   ├── DestroyCommand.php
│       │           │       │   │   ├── ExifCommand.php
│       │           │       │   │   ├── FillCommand.php
│       │           │       │   │   ├── FitCommand.php
│       │           │       │   │   ├── FlipCommand.php
│       │           │       │   │   ├── GammaCommand.php
│       │           │       │   │   ├── GetSizeCommand.php
│       │           │       │   │   ├── GreyscaleCommand.php
│       │           │       │   │   ├── HeightenCommand.php
│       │           │       │   │   ├── InsertCommand.php
│       │           │       │   │   ├── InterlaceCommand.php
│       │           │       │   │   ├── InvertCommand.php
│       │           │       │   │   ├── LimitColorsCommand.php
│       │           │       │   │   ├── MaskCommand.php
│       │           │       │   │   ├── OpacityCommand.php
│       │           │       │   │   ├── PickColorCommand.php
│       │           │       │   │   ├── PixelCommand.php
│       │           │       │   │   ├── PixelateCommand.php
│       │           │       │   │   ├── ResetCommand.php
│       │           │       │   │   ├── ResizeCanvasCommand.php
│       │           │       │   │   ├── ResizeCommand.php
│       │           │       │   │   ├── RotateCommand.php
│       │           │       │   │   ├── SharpenCommand.php
│       │           │       │   │   ├── TrimCommand.php
│       │           │       │   │   └── WidenCommand.php
│       │           │       │   ├── Decoder.php
│       │           │       │   ├── Driver.php
│       │           │       │   ├── Encoder.php
│       │           │       │   ├── Font.php
│       │           │       │   └── Shapes
│       │           │       │       ├── CircleShape.php
│       │           │       │       ├── EllipseShape.php
│       │           │       │       ├── LineShape.php
│       │           │       │       ├── PolygonShape.php
│       │           │       │       └── RectangleShape.php
│       │           │       ├── Point.php
│       │           │       ├── Response.php
│       │           │       └── Size.php
│       │           └── config
│       │               └── config.php
│       ├── jakub-onderka
│       │   ├── php-console-color
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── example.php
│       │   │   └── src
│       │   │       ├── ConsoleColor.php
│       │   │       └── InvalidStyleException.php
│       │   └── php-console-highlighter
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── build.xml
│       │       └── src
│       │           └── JakubOnderka
│       │               └── PhpConsoleHighlighter
│       │                   └── Highlighter.php
│       ├── jaybizzle
│       │   └── crawler-detect
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── export.php
│       │       ├── raw
│       │       │   ├── Crawlers.json
│       │       │   ├── Crawlers.txt
│       │       │   ├── Exclusions.json
│       │       │   ├── Exclusions.txt
│       │       │   ├── Headers.json
│       │       │   └── Headers.txt
│       │       └── src
│       │           ├── CrawlerDetect.php
│       │           └── Fixtures
│       │               ├── AbstractProvider.php
│       │               ├── Crawlers.php
│       │               ├── Exclusions.php
│       │               └── Headers.php
│       ├── jenssegers
│       │   └── agent
│       │       ├── LICENSE.md
│       │       ├── README.md
│       │       └── src
│       │           ├── Agent.php
│       │           ├── AgentServiceProvider.php
│       │           └── Facades
│       │               └── Agent.php
│       ├── jeremeamia
│       │   └── SuperClosure
│       │       ├── LICENSE.md
│       │       └── src
│       │           ├── Analyzer
│       │           │   ├── AstAnalyzer.php
│       │           │   ├── ClosureAnalyzer.php
│       │           │   ├── Token.php
│       │           │   ├── TokenAnalyzer.php
│       │           │   └── Visitor
│       │           │       ├── ClosureLocatorVisitor.php
│       │           │       ├── MagicConstantVisitor.php
│       │           │       └── ThisDetectorVisitor.php
│       │           ├── Exception
│       │           │   ├── ClosureAnalysisException.php
│       │           │   ├── ClosureSerializationException.php
│       │           │   ├── ClosureUnserializationException.php
│       │           │   └── SuperClosureException.php
│       │           ├── SerializableClosure.php
│       │           ├── Serializer.php
│       │           └── SerializerInterface.php
│       ├── kylekatarnls
│       │   └── update-helper
│       │       ├── LICENSE
│       │       └── src
│       │           └── UpdateHelper
│       │               ├── ComposerPlugin.php
│       │               ├── NotUpdateInterfaceInstanceException.php
│       │               ├── UpdateHelper.php
│       │               └── UpdateHelperInterface.php
│       ├── laravel
│       │   └── framework
│       │       ├── LICENSE.txt
│       │       ├── readme.md
│       │       └── src
│       │           └── Illuminate
│       │               ├── Auth
│       │               │   ├── Access
│       │               │   │   ├── Gate.php
│       │               │   │   ├── HandlesAuthorization.php
│       │               │   │   ├── Response.php
│       │               │   │   └── UnauthorizedException.php
│       │               │   ├── AuthManager.php
│       │               │   ├── AuthServiceProvider.php
│       │               │   ├── Authenticatable.php
│       │               │   ├── Console
│       │               │   │   └── ClearResetsCommand.php
│       │               │   ├── DatabaseUserProvider.php
│       │               │   ├── EloquentUserProvider.php
│       │               │   ├── GeneratorServiceProvider.php
│       │               │   ├── GenericUser.php
│       │               │   ├── Guard.php
│       │               │   ├── Middleware
│       │               │   │   └── AuthenticateWithBasicAuth.php
│       │               │   └── Passwords
│       │               │       ├── CanResetPassword.php
│       │               │       ├── DatabaseTokenRepository.php
│       │               │       ├── PasswordBroker.php
│       │               │       ├── PasswordResetServiceProvider.php
│       │               │       └── TokenRepositoryInterface.php
│       │               ├── Broadcasting
│       │               │   ├── BroadcastEvent.php
│       │               │   ├── BroadcastManager.php
│       │               │   ├── BroadcastServiceProvider.php
│       │               │   └── Broadcasters
│       │               │       ├── LogBroadcaster.php
│       │               │       ├── PusherBroadcaster.php
│       │               │       └── RedisBroadcaster.php
│       │               ├── Bus
│       │               │   ├── BusServiceProvider.php
│       │               │   ├── Dispatcher.php
│       │               │   ├── MarshalException.php
│       │               │   └── Queueable.php
│       │               ├── Cache
│       │               │   ├── ApcStore.php
│       │               │   ├── ApcWrapper.php
│       │               │   ├── ArrayStore.php
│       │               │   ├── CacheManager.php
│       │               │   ├── CacheServiceProvider.php
│       │               │   ├── Console
│       │               │   │   ├── CacheTableCommand.php
│       │               │   │   ├── ClearCommand.php
│       │               │   │   └── stubs
│       │               │   │       └── cache.stub
│       │               │   ├── DatabaseStore.php
│       │               │   ├── FileStore.php
│       │               │   ├── MemcachedConnector.php
│       │               │   ├── MemcachedStore.php
│       │               │   ├── NullStore.php
│       │               │   ├── RateLimiter.php
│       │               │   ├── RedisStore.php
│       │               │   ├── RedisTaggedCache.php
│       │               │   ├── Repository.php
│       │               │   ├── TagSet.php
│       │               │   ├── TaggableStore.php
│       │               │   ├── TaggedCache.php
│       │               │   ├── WinCacheStore.php
│       │               │   └── XCacheStore.php
│       │               ├── Config
│       │               │   └── Repository.php
│       │               ├── Console
│       │               │   ├── AppNamespaceDetectorTrait.php
│       │               │   ├── Application.php
│       │               │   ├── Command.php
│       │               │   ├── ConfirmableTrait.php
│       │               │   ├── GeneratorCommand.php
│       │               │   ├── OutputStyle.php
│       │               │   ├── Parser.php
│       │               │   ├── ScheduleServiceProvider.php
│       │               │   └── Scheduling
│       │               │       ├── CallbackEvent.php
│       │               │       ├── Event.php
│       │               │       ├── Schedule.php
│       │               │       └── ScheduleRunCommand.php
│       │               ├── Container
│       │               │   ├── BindingResolutionException.php
│       │               │   ├── Container.php
│       │               │   └── ContextualBindingBuilder.php
│       │               ├── Contracts
│       │               │   ├── Auth
│       │               │   │   ├── Access
│       │               │   │   │   ├── Authorizable.php
│       │               │   │   │   └── Gate.php
│       │               │   │   ├── Authenticatable.php
│       │               │   │   ├── CanResetPassword.php
│       │               │   │   ├── Guard.php
│       │               │   │   ├── PasswordBroker.php
│       │               │   │   ├── Registrar.php
│       │               │   │   └── UserProvider.php
│       │               │   ├── Broadcasting
│       │               │   │   ├── Broadcaster.php
│       │               │   │   ├── Factory.php
│       │               │   │   ├── ShouldBroadcast.php
│       │               │   │   └── ShouldBroadcastNow.php
│       │               │   ├── Bus
│       │               │   │   ├── Dispatcher.php
│       │               │   │   ├── HandlerResolver.php
│       │               │   │   ├── QueueingDispatcher.php
│       │               │   │   └── SelfHandling.php
│       │               │   ├── Cache
│       │               │   │   ├── Factory.php
│       │               │   │   ├── Repository.php
│       │               │   │   └── Store.php
│       │               │   ├── Config
│       │               │   │   └── Repository.php
│       │               │   ├── Console
│       │               │   │   ├── Application.php
│       │               │   │   └── Kernel.php
│       │               │   ├── Container
│       │               │   │   ├── BindingResolutionException.php
│       │               │   │   ├── Container.php
│       │               │   │   └── ContextualBindingBuilder.php
│       │               │   ├── Cookie
│       │               │   │   ├── Factory.php
│       │               │   │   └── QueueingFactory.php
│       │               │   ├── Database
│       │               │   │   └── ModelIdentifier.php
│       │               │   ├── Debug
│       │               │   │   └── ExceptionHandler.php
│       │               │   ├── Encryption
│       │               │   │   ├── DecryptException.php
│       │               │   │   ├── EncryptException.php
│       │               │   │   └── Encrypter.php
│       │               │   ├── Events
│       │               │   │   └── Dispatcher.php
│       │               │   ├── Filesystem
│       │               │   │   ├── Cloud.php
│       │               │   │   ├── Factory.php
│       │               │   │   ├── FileNotFoundException.php
│       │               │   │   └── Filesystem.php
│       │               │   ├── Foundation
│       │               │   │   └── Application.php
│       │               │   ├── Hashing
│       │               │   │   └── Hasher.php
│       │               │   ├── Http
│       │               │   │   └── Kernel.php
│       │               │   ├── Logging
│       │               │   │   └── Log.php
│       │               │   ├── Mail
│       │               │   │   ├── MailQueue.php
│       │               │   │   └── Mailer.php
│       │               │   ├── Pagination
│       │               │   │   ├── LengthAwarePaginator.php
│       │               │   │   ├── Paginator.php
│       │               │   │   └── Presenter.php
│       │               │   ├── Pipeline
│       │               │   │   ├── Hub.php
│       │               │   │   └── Pipeline.php
│       │               │   ├── Queue
│       │               │   │   ├── EntityNotFoundException.php
│       │               │   │   ├── EntityResolver.php
│       │               │   │   ├── Factory.php
│       │               │   │   ├── Job.php
│       │               │   │   ├── Monitor.php
│       │               │   │   ├── Queue.php
│       │               │   │   ├── QueueableEntity.php
│       │               │   │   ├── ShouldBeQueued.php
│       │               │   │   └── ShouldQueue.php
│       │               │   ├── Redis
│       │               │   │   └── Database.php
│       │               │   ├── Routing
│       │               │   │   ├── Middleware.php
│       │               │   │   ├── Registrar.php
│       │               │   │   ├── ResponseFactory.php
│       │               │   │   ├── TerminableMiddleware.php
│       │               │   │   ├── UrlGenerator.php
│       │               │   │   └── UrlRoutable.php
│       │               │   ├── Support
│       │               │   │   ├── Arrayable.php
│       │               │   │   ├── Htmlable.php
│       │               │   │   ├── Jsonable.php
│       │               │   │   ├── MessageBag.php
│       │               │   │   ├── MessageProvider.php
│       │               │   │   └── Renderable.php
│       │               │   ├── Validation
│       │               │   │   ├── Factory.php
│       │               │   │   ├── UnauthorizedException.php
│       │               │   │   ├── ValidatesWhenResolved.php
│       │               │   │   ├── ValidationException.php
│       │               │   │   └── Validator.php
│       │               │   └── View
│       │               │       ├── Factory.php
│       │               │       └── View.php
│       │               ├── Cookie
│       │               │   ├── CookieJar.php
│       │               │   ├── CookieServiceProvider.php
│       │               │   └── Middleware
│       │               │       ├── AddQueuedCookiesToResponse.php
│       │               │       └── EncryptCookies.php
│       │               ├── 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
│       │               │   │   │   └── StatusCommand.php
│       │               │   │   └── Seeds
│       │               │   │       ├── SeedCommand.php
│       │               │   │       ├── SeederMakeCommand.php
│       │               │   │       └── stubs
│       │               │   │           └── seeder.stub
│       │               │   ├── DatabaseManager.php
│       │               │   ├── DatabaseServiceProvider.php
│       │               │   ├── DetectsLostConnections.php
│       │               │   ├── Eloquent
│       │               │   │   ├── Builder.php
│       │               │   │   ├── Collection.php
│       │               │   │   ├── Factory.php
│       │               │   │   ├── FactoryBuilder.php
│       │               │   │   ├── MassAssignmentException.php
│       │               │   │   ├── Model.php
│       │               │   │   ├── ModelNotFoundException.php
│       │               │   │   ├── QueueEntityResolver.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
│       │               │   │   ├── SoftDeletes.php
│       │               │   │   └── SoftDeletingScope.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
│       │               │   │   └── PostgresBuilder.php
│       │               │   ├── SeedServiceProvider.php
│       │               │   ├── Seeder.php
│       │               │   └── SqlServerConnection.php
│       │               ├── Encryption
│       │               │   ├── BaseEncrypter.php
│       │               │   ├── Encrypter.php
│       │               │   ├── EncryptionServiceProvider.php
│       │               │   └── McryptEncrypter.php
│       │               ├── Events
│       │               │   ├── CallQueuedHandler.php
│       │               │   ├── Dispatcher.php
│       │               │   └── EventServiceProvider.php
│       │               ├── Filesystem
│       │               │   ├── ClassFinder.php
│       │               │   ├── Filesystem.php
│       │               │   ├── FilesystemAdapter.php
│       │               │   ├── FilesystemManager.php
│       │               │   └── FilesystemServiceProvider.php
│       │               ├── Foundation
│       │               │   ├── AliasLoader.php
│       │               │   ├── Application.php
│       │               │   ├── Auth
│       │               │   │   ├── Access
│       │               │   │   │   ├── Authorizable.php
│       │               │   │   │   └── AuthorizesRequests.php
│       │               │   │   ├── AuthenticatesAndRegistersUsers.php
│       │               │   │   ├── AuthenticatesUsers.php
│       │               │   │   ├── RedirectsUsers.php
│       │               │   │   ├── RegistersUsers.php
│       │               │   │   ├── ResetsPasswords.php
│       │               │   │   └── ThrottlesLogins.php
│       │               │   ├── Bootstrap
│       │               │   │   ├── BootProviders.php
│       │               │   │   ├── ConfigureLogging.php
│       │               │   │   ├── DetectEnvironment.php
│       │               │   │   ├── HandleExceptions.php
│       │               │   │   ├── LoadConfiguration.php
│       │               │   │   ├── RegisterFacades.php
│       │               │   │   ├── RegisterProviders.php
│       │               │   │   └── SetRequestForConsole.php
│       │               │   ├── Bus
│       │               │   │   ├── DispatchesCommands.php
│       │               │   │   └── DispatchesJobs.php
│       │               │   ├── Composer.php
│       │               │   ├── ComposerScripts.php
│       │               │   ├── Console
│       │               │   │   ├── AppNameCommand.php
│       │               │   │   ├── ClearCompiledCommand.php
│       │               │   │   ├── CommandMakeCommand.php
│       │               │   │   ├── ConfigCacheCommand.php
│       │               │   │   ├── ConfigClearCommand.php
│       │               │   │   ├── ConsoleMakeCommand.php
│       │               │   │   ├── DownCommand.php
│       │               │   │   ├── EnvironmentCommand.php
│       │               │   │   ├── EventGenerateCommand.php
│       │               │   │   ├── EventMakeCommand.php
│       │               │   │   ├── HandlerCommandCommand.php
│       │               │   │   ├── HandlerEventCommand.php
│       │               │   │   ├── IlluminateCaster.php
│       │               │   │   ├── JobMakeCommand.php
│       │               │   │   ├── Kernel.php
│       │               │   │   ├── KeyGenerateCommand.php
│       │               │   │   ├── ListenerMakeCommand.php
│       │               │   │   ├── ModelMakeCommand.php
│       │               │   │   ├── Optimize
│       │               │   │   │   └── config.php
│       │               │   │   ├── OptimizeCommand.php
│       │               │   │   ├── PolicyMakeCommand.php
│       │               │   │   ├── ProviderMakeCommand.php
│       │               │   │   ├── QueuedJob.php
│       │               │   │   ├── RequestMakeCommand.php
│       │               │   │   ├── RouteCacheCommand.php
│       │               │   │   ├── RouteClearCommand.php
│       │               │   │   ├── RouteListCommand.php
│       │               │   │   ├── ServeCommand.php
│       │               │   │   ├── TestMakeCommand.php
│       │               │   │   ├── TinkerCommand.php
│       │               │   │   ├── UpCommand.php
│       │               │   │   ├── VendorPublishCommand.php
│       │               │   │   ├── ViewClearCommand.php
│       │               │   │   └── stubs
│       │               │   │       ├── command-handler.stub
│       │               │   │       ├── command-queued-with-handler.stub
│       │               │   │       ├── command-queued.stub
│       │               │   │       ├── command-with-handler.stub
│       │               │   │       ├── command.stub
│       │               │   │       ├── console.stub
│       │               │   │       ├── event-handler-queued.stub
│       │               │   │       ├── event-handler.stub
│       │               │   │       ├── event.stub
│       │               │   │       ├── job-queued.stub
│       │               │   │       ├── job.stub
│       │               │   │       ├── listener-queued.stub
│       │               │   │       ├── listener.stub
│       │               │   │       ├── model.stub
│       │               │   │       ├── policy.stub
│       │               │   │       ├── provider.stub
│       │               │   │       ├── request.stub
│       │               │   │       ├── routes.stub
│       │               │   │       └── test.stub
│       │               │   ├── EnvironmentDetector.php
│       │               │   ├── Exceptions
│       │               │   │   └── Handler.php
│       │               │   ├── Http
│       │               │   │   ├── FormRequest.php
│       │               │   │   ├── Kernel.php
│       │               │   │   └── Middleware
│       │               │   │       ├── CheckForMaintenanceMode.php
│       │               │   │       ├── VerifyCsrfToken.php
│       │               │   │       └── VerifyPostSize.php
│       │               │   ├── Inspiring.php
│       │               │   ├── ProviderRepository.php
│       │               │   ├── Providers
│       │               │   │   ├── ArtisanServiceProvider.php
│       │               │   │   ├── ComposerServiceProvider.php
│       │               │   │   ├── ConsoleSupportServiceProvider.php
│       │               │   │   ├── FormRequestServiceProvider.php
│       │               │   │   └── FoundationServiceProvider.php
│       │               │   ├── Support
│       │               │   │   └── Providers
│       │               │   │       ├── AuthServiceProvider.php
│       │               │   │       ├── EventServiceProvider.php
│       │               │   │       └── RouteServiceProvider.php
│       │               │   ├── Testing
│       │               │   │   ├── ApplicationTrait.php
│       │               │   │   ├── AssertionsTrait.php
│       │               │   │   ├── CrawlerTrait.php
│       │               │   │   ├── DatabaseMigrations.php
│       │               │   │   ├── DatabaseTransactions.php
│       │               │   │   ├── HttpException.php
│       │               │   │   ├── InteractsWithPages.php
│       │               │   │   ├── TestCase.php
│       │               │   │   ├── WithoutEvents.php
│       │               │   │   └── WithoutMiddleware.php
│       │               │   ├── Validation
│       │               │   │   └── ValidatesRequests.php
│       │               │   └── helpers.php
│       │               ├── Hashing
│       │               │   ├── BcryptHasher.php
│       │               │   └── HashServiceProvider.php
│       │               ├── Http
│       │               │   ├── Exception
│       │               │   │   ├── HttpResponseException.php
│       │               │   │   └── PostTooLargeException.php
│       │               │   ├── JsonResponse.php
│       │               │   ├── Middleware
│       │               │   │   ├── CheckResponseForModifications.php
│       │               │   │   └── FrameGuard.php
│       │               │   ├── RedirectResponse.php
│       │               │   ├── Request.php
│       │               │   ├── Response.php
│       │               │   └── ResponseTrait.php
│       │               ├── Log
│       │               │   └── Writer.php
│       │               ├── Mail
│       │               │   ├── MailServiceProvider.php
│       │               │   ├── Mailer.php
│       │               │   ├── Message.php
│       │               │   ├── Transport
│       │               │   │   ├── LogTransport.php
│       │               │   │   ├── MailgunTransport.php
│       │               │   │   ├── MandrillTransport.php
│       │               │   │   ├── SesTransport.php
│       │               │   │   └── Transport.php
│       │               │   └── TransportManager.php
│       │               ├── Pagination
│       │               │   ├── AbstractPaginator.php
│       │               │   ├── BootstrapThreeNextPreviousButtonRendererTrait.php
│       │               │   ├── BootstrapThreePresenter.php
│       │               │   ├── LengthAwarePaginator.php
│       │               │   ├── PaginationServiceProvider.php
│       │               │   ├── Paginator.php
│       │               │   ├── SimpleBootstrapThreePresenter.php
│       │               │   ├── UrlWindow.php
│       │               │   └── UrlWindowPresenterTrait.php
│       │               ├── Pipeline
│       │               │   ├── Hub.php
│       │               │   ├── Pipeline.php
│       │               │   └── PipelineServiceProvider.php
│       │               ├── Queue
│       │               │   ├── BeanstalkdQueue.php
│       │               │   ├── CallQueuedHandler.php
│       │               │   ├── Capsule
│       │               │   │   └── Manager.php
│       │               │   ├── Connectors
│       │               │   │   ├── BeanstalkdConnector.php
│       │               │   │   ├── ConnectorInterface.php
│       │               │   │   ├── DatabaseConnector.php
│       │               │   │   ├── IronConnector.php
│       │               │   │   ├── NullConnector.php
│       │               │   │   ├── RedisConnector.php
│       │               │   │   ├── SqsConnector.php
│       │               │   │   └── SyncConnector.php
│       │               │   ├── Console
│       │               │   │   ├── FailedTableCommand.php
│       │               │   │   ├── FlushFailedCommand.php
│       │               │   │   ├── ForgetFailedCommand.php
│       │               │   │   ├── ListFailedCommand.php
│       │               │   │   ├── ListenCommand.php
│       │               │   │   ├── RestartCommand.php
│       │               │   │   ├── RetryCommand.php
│       │               │   │   ├── SubscribeCommand.php
│       │               │   │   ├── TableCommand.php
│       │               │   │   ├── WorkCommand.php
│       │               │   │   └── stubs
│       │               │   │       ├── failed_jobs.stub
│       │               │   │       └── jobs.stub
│       │               │   ├── ConsoleServiceProvider.php
│       │               │   ├── DatabaseQueue.php
│       │               │   ├── Failed
│       │               │   │   ├── DatabaseFailedJobProvider.php
│       │               │   │   ├── FailedJobProviderInterface.php
│       │               │   │   └── NullFailedJobProvider.php
│       │               │   ├── IlluminateQueueClosure.php
│       │               │   ├── InteractsWithQueue.php
│       │               │   ├── IronQueue.php
│       │               │   ├── Jobs
│       │               │   │   ├── BeanstalkdJob.php
│       │               │   │   ├── DatabaseJob.php
│       │               │   │   ├── IronJob.php
│       │               │   │   ├── Job.php
│       │               │   │   ├── RedisJob.php
│       │               │   │   ├── SqsJob.php
│       │               │   │   └── SyncJob.php
│       │               │   ├── Listener.php
│       │               │   ├── NullQueue.php
│       │               │   ├── Queue.php
│       │               │   ├── QueueManager.php
│       │               │   ├── QueueServiceProvider.php
│       │               │   ├── README.md
│       │               │   ├── RedisQueue.php
│       │               │   ├── SerializesModels.php
│       │               │   ├── SqsQueue.php
│       │               │   ├── SyncQueue.php
│       │               │   └── Worker.php
│       │               ├── Redis
│       │               │   ├── Database.php
│       │               │   └── RedisServiceProvider.php
│       │               ├── Routing
│       │               │   ├── Console
│       │               │   │   ├── ControllerMakeCommand.php
│       │               │   │   ├── MiddlewareMakeCommand.php
│       │               │   │   └── stubs
│       │               │   │       ├── controller.plain.stub
│       │               │   │       ├── controller.stub
│       │               │   │       └── middleware.stub
│       │               │   ├── Controller.php
│       │               │   ├── ControllerDispatcher.php
│       │               │   ├── ControllerInspector.php
│       │               │   ├── ControllerServiceProvider.php
│       │               │   ├── GeneratorServiceProvider.php
│       │               │   ├── Matching
│       │               │   │   ├── HostValidator.php
│       │               │   │   ├── MethodValidator.php
│       │               │   │   ├── SchemeValidator.php
│       │               │   │   ├── UriValidator.php
│       │               │   │   └── ValidatorInterface.php
│       │               │   ├── Redirector.php
│       │               │   ├── ResourceRegistrar.php
│       │               │   ├── ResponseFactory.php
│       │               │   ├── Route.php
│       │               │   ├── RouteCollection.php
│       │               │   ├── RouteDependencyResolverTrait.php
│       │               │   ├── Router.php
│       │               │   ├── RoutingServiceProvider.php
│       │               │   └── UrlGenerator.php
│       │               ├── Session
│       │               │   ├── CacheBasedSessionHandler.php
│       │               │   ├── CommandsServiceProvider.php
│       │               │   ├── Console
│       │               │   │   ├── SessionTableCommand.php
│       │               │   │   └── stubs
│       │               │   │       └── database.stub
│       │               │   ├── CookieSessionHandler.php
│       │               │   ├── DatabaseSessionHandler.php
│       │               │   ├── EncryptedStore.php
│       │               │   ├── ExistenceAwareInterface.php
│       │               │   ├── FileSessionHandler.php
│       │               │   ├── Middleware
│       │               │   │   └── StartSession.php
│       │               │   ├── SessionInterface.php
│       │               │   ├── SessionManager.php
│       │               │   ├── SessionServiceProvider.php
│       │               │   ├── Store.php
│       │               │   └── TokenMismatchException.php
│       │               ├── Support
│       │               │   ├── AggregateServiceProvider.php
│       │               │   ├── Arr.php
│       │               │   ├── ClassLoader.php
│       │               │   ├── Collection.php
│       │               │   ├── Debug
│       │               │   │   ├── Dumper.php
│       │               │   │   └── HtmlDumper.php
│       │               │   ├── Facades
│       │               │   │   ├── App.php
│       │               │   │   ├── Artisan.php
│       │               │   │   ├── Auth.php
│       │               │   │   ├── Blade.php
│       │               │   │   ├── Bus.php
│       │               │   │   ├── Cache.php
│       │               │   │   ├── Config.php
│       │               │   │   ├── Cookie.php
│       │               │   │   ├── Crypt.php
│       │               │   │   ├── DB.php
│       │               │   │   ├── Event.php
│       │               │   │   ├── Facade.php
│       │               │   │   ├── File.php
│       │               │   │   ├── Gate.php
│       │               │   │   ├── Hash.php
│       │               │   │   ├── Input.php
│       │               │   │   ├── Lang.php
│       │               │   │   ├── Log.php
│       │               │   │   ├── Mail.php
│       │               │   │   ├── Password.php
│       │               │   │   ├── Queue.php
│       │               │   │   ├── Redirect.php
│       │               │   │   ├── Redis.php
│       │               │   │   ├── Request.php
│       │               │   │   ├── Response.php
│       │               │   │   ├── Route.php
│       │               │   │   ├── Schema.php
│       │               │   │   ├── Session.php
│       │               │   │   ├── Storage.php
│       │               │   │   ├── URL.php
│       │               │   │   ├── Validator.php
│       │               │   │   └── View.php
│       │               │   ├── Fluent.php
│       │               │   ├── HtmlString.php
│       │               │   ├── Manager.php
│       │               │   ├── MessageBag.php
│       │               │   ├── NamespacedItemResolver.php
│       │               │   ├── Pluralizer.php
│       │               │   ├── ServiceProvider.php
│       │               │   ├── Str.php
│       │               │   ├── Traits
│       │               │   │   ├── CapsuleManagerTrait.php
│       │               │   │   └── Macroable.php
│       │               │   ├── ViewErrorBag.php
│       │               │   └── helpers.php
│       │               ├── Translation
│       │               │   ├── FileLoader.php
│       │               │   ├── LoaderInterface.php
│       │               │   ├── TranslationServiceProvider.php
│       │               │   └── Translator.php
│       │               ├── Validation
│       │               │   ├── DatabasePresenceVerifier.php
│       │               │   ├── Factory.php
│       │               │   ├── PresenceVerifierInterface.php
│       │               │   ├── ValidatesWhenResolvedTrait.php
│       │               │   ├── ValidationServiceProvider.php
│       │               │   └── Validator.php
│       │               └── View
│       │                   ├── Compilers
│       │                   │   ├── BladeCompiler.php
│       │                   │   ├── Compiler.php
│       │                   │   └── CompilerInterface.php
│       │                   ├── Engines
│       │                   │   ├── CompilerEngine.php
│       │                   │   ├── Engine.php
│       │                   │   ├── EngineInterface.php
│       │                   │   ├── EngineResolver.php
│       │                   │   └── PhpEngine.php
│       │                   ├── Expression.php
│       │                   ├── Factory.php
│       │                   ├── FileViewFinder.php
│       │                   ├── Middleware
│       │                   │   └── ShareErrorsFromSession.php
│       │                   ├── View.php
│       │                   ├── ViewFinderInterface.php
│       │                   └── ViewServiceProvider.php
│       ├── league
│       │   ├── commonmark
│       │   │   ├── CHANGELOG.md
│       │   │   ├── CODE_OF_CONDUCT.md
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── UPGRADE.md
│       │   │   ├── bin
│       │   │   │   └── commonmark
│       │   │   └── src
│       │   │       ├── Block
│       │   │       │   ├── Element
│       │   │       │   │   ├── AbstractBlock.php
│       │   │       │   │   ├── BlockQuote.php
│       │   │       │   │   ├── Document.php
│       │   │       │   │   ├── FencedCode.php
│       │   │       │   │   ├── Heading.php
│       │   │       │   │   ├── HtmlBlock.php
│       │   │       │   │   ├── IndentedCode.php
│       │   │       │   │   ├── InlineContainer.php
│       │   │       │   │   ├── InlineContainerInterface.php
│       │   │       │   │   ├── ListBlock.php
│       │   │       │   │   ├── ListData.php
│       │   │       │   │   ├── ListItem.php
│       │   │       │   │   ├── Paragraph.php
│       │   │       │   │   └── ThematicBreak.php
│       │   │       │   ├── Parser
│       │   │       │   │   ├── ATXHeadingParser.php
│       │   │       │   │   ├── AbstractBlockParser.php
│       │   │       │   │   ├── BlockParserInterface.php
│       │   │       │   │   ├── BlockQuoteParser.php
│       │   │       │   │   ├── FencedCodeParser.php
│       │   │       │   │   ├── HtmlBlockParser.php
│       │   │       │   │   ├── IndentedCodeParser.php
│       │   │       │   │   ├── LazyParagraphParser.php
│       │   │       │   │   ├── ListParser.php
│       │   │       │   │   ├── SetExtHeadingParser.php
│       │   │       │   │   └── ThematicBreakParser.php
│       │   │       │   └── Renderer
│       │   │       │       ├── BlockQuoteRenderer.php
│       │   │       │       ├── BlockRendererInterface.php
│       │   │       │       ├── DocumentRenderer.php
│       │   │       │       ├── FencedCodeRenderer.php
│       │   │       │       ├── HeadingRenderer.php
│       │   │       │       ├── HtmlBlockRenderer.php
│       │   │       │       ├── IndentedCodeRenderer.php
│       │   │       │       ├── ListBlockRenderer.php
│       │   │       │       ├── ListItemRenderer.php
│       │   │       │       ├── ParagraphRenderer.php
│       │   │       │       └── ThematicBreakRenderer.php
│       │   │       ├── CommonMarkConverter.php
│       │   │       ├── Context.php
│       │   │       ├── ContextInterface.php
│       │   │       ├── Converter.php
│       │   │       ├── ConverterInterface.php
│       │   │       ├── Cursor.php
│       │   │       ├── Delimiter
│       │   │       │   ├── Delimiter.php
│       │   │       │   └── DelimiterStack.php
│       │   │       ├── DocParser.php
│       │   │       ├── DocumentProcessorInterface.php
│       │   │       ├── ElementRendererInterface.php
│       │   │       ├── Environment.php
│       │   │       ├── EnvironmentAwareInterface.php
│       │   │       ├── Extension
│       │   │       │   ├── CommonMarkCoreExtension.php
│       │   │       │   ├── Extension.php
│       │   │       │   ├── ExtensionInterface.php
│       │   │       │   └── MiscExtension.php
│       │   │       ├── HtmlElement.php
│       │   │       ├── HtmlRenderer.php
│       │   │       ├── Inline
│       │   │       │   ├── AdjoiningTextCollapser.php
│       │   │       │   ├── Element
│       │   │       │   │   ├── AbstractInline.php
│       │   │       │   │   ├── AbstractInlineContainer.php
│       │   │       │   │   ├── AbstractStringContainer.php
│       │   │       │   │   ├── AbstractWebResource.php
│       │   │       │   │   ├── Code.php
│       │   │       │   │   ├── Emphasis.php
│       │   │       │   │   ├── HtmlInline.php
│       │   │       │   │   ├── Image.php
│       │   │       │   │   ├── Link.php
│       │   │       │   │   ├── Newline.php
│       │   │       │   │   ├── Strong.php
│       │   │       │   │   └── Text.php
│       │   │       │   ├── Parser
│       │   │       │   │   ├── AbstractInlineParser.php
│       │   │       │   │   ├── AutolinkParser.php
│       │   │       │   │   ├── BacktickParser.php
│       │   │       │   │   ├── BangParser.php
│       │   │       │   │   ├── CloseBracketParser.php
│       │   │       │   │   ├── EmphasisParser.php
│       │   │       │   │   ├── EntityParser.php
│       │   │       │   │   ├── EscapableParser.php
│       │   │       │   │   ├── HtmlInlineParser.php
│       │   │       │   │   ├── InlineParserInterface.php
│       │   │       │   │   ├── NewlineParser.php
│       │   │       │   │   └── OpenBracketParser.php
│       │   │       │   ├── Processor
│       │   │       │   │   ├── EmphasisProcessor.php
│       │   │       │   │   └── InlineProcessorInterface.php
│       │   │       │   └── Renderer
│       │   │       │       ├── CodeRenderer.php
│       │   │       │       ├── EmphasisRenderer.php
│       │   │       │       ├── HtmlInlineRenderer.php
│       │   │       │       ├── ImageRenderer.php
│       │   │       │       ├── InlineRendererInterface.php
│       │   │       │       ├── LinkRenderer.php
│       │   │       │       ├── NewlineRenderer.php
│       │   │       │       ├── StrongRenderer.php
│       │   │       │       └── TextRenderer.php
│       │   │       ├── InlineParserContext.php
│       │   │       ├── InlineParserEngine.php
│       │   │       ├── Node
│       │   │       │   ├── Node.php
│       │   │       │   ├── NodeWalker.php
│       │   │       │   └── NodeWalkerEvent.php
│       │   │       ├── Reference
│       │   │       │   ├── Reference.php
│       │   │       │   └── ReferenceMap.php
│       │   │       ├── ReferenceParser.php
│       │   │       ├── UnmatchedBlockCloser.php
│       │   │       └── Util
│       │   │           ├── ArrayCollection.php
│       │   │           ├── Configuration.php
│       │   │           ├── ConfigurationAwareInterface.php
│       │   │           ├── Html5Entities.php
│       │   │           ├── LinkParserHelper.php
│       │   │           ├── RegexHelper.php
│       │   │           ├── UrlEncoder.php
│       │   │           └── Xml.php
│       │   ├── commonmark-ext-table
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── psalm.xml
│       │   │   └── src
│       │   │       ├── Table.php
│       │   │       ├── TableCaption.php
│       │   │       ├── TableCaptionRenderer.php
│       │   │       ├── TableCell.php
│       │   │       ├── TableCellRenderer.php
│       │   │       ├── TableExtension.php
│       │   │       ├── TableParser.php
│       │   │       ├── TableRenderer.php
│       │   │       ├── TableRow.php
│       │   │       ├── TableRowRenderer.php
│       │   │       ├── TableRows.php
│       │   │       └── TableRowsRenderer.php
│       │   └── flysystem
│       │       ├── LICENSE
│       │       ├── SECURITY.md
│       │       ├── deprecations.md
│       │       └── src
│       │           ├── Adapter
│       │           │   ├── AbstractAdapter.php
│       │           │   ├── AbstractFtpAdapter.php
│       │           │   ├── CanOverwriteFiles.php
│       │           │   ├── Ftp.php
│       │           │   ├── Ftpd.php
│       │           │   ├── Local.php
│       │           │   ├── NullAdapter.php
│       │           │   ├── Polyfill
│       │           │   │   ├── NotSupportingVisibilityTrait.php
│       │           │   │   ├── StreamedCopyTrait.php
│       │           │   │   ├── StreamedReadingTrait.php
│       │           │   │   ├── StreamedTrait.php
│       │           │   │   └── StreamedWritingTrait.php
│       │           │   └── SynologyFtp.php
│       │           ├── AdapterInterface.php
│       │           ├── Config.php
│       │           ├── ConfigAwareTrait.php
│       │           ├── ConnectionErrorException.php
│       │           ├── ConnectionRuntimeException.php
│       │           ├── Directory.php
│       │           ├── Exception.php
│       │           ├── File.php
│       │           ├── FileExistsException.php
│       │           ├── FileNotFoundException.php
│       │           ├── Filesystem.php
│       │           ├── FilesystemException.php
│       │           ├── FilesystemInterface.php
│       │           ├── FilesystemNotFoundException.php
│       │           ├── Handler.php
│       │           ├── InvalidRootException.php
│       │           ├── MountManager.php
│       │           ├── NotSupportedException.php
│       │           ├── Plugin
│       │           │   ├── AbstractPlugin.php
│       │           │   ├── EmptyDir.php
│       │           │   ├── ForcedCopy.php
│       │           │   ├── ForcedRename.php
│       │           │   ├── GetWithMetadata.php
│       │           │   ├── ListFiles.php
│       │           │   ├── ListPaths.php
│       │           │   ├── ListWith.php
│       │           │   ├── PluggableTrait.php
│       │           │   └── PluginNotFoundException.php
│       │           ├── PluginInterface.php
│       │           ├── ReadInterface.php
│       │           ├── RootViolationException.php
│       │           ├── SafeStorage.php
│       │           ├── UnreadableFileException.php
│       │           ├── Util
│       │           │   ├── ContentListingFormatter.php
│       │           │   ├── MimeType.php
│       │           │   └── StreamHasher.php
│       │           └── Util.php
│       ├── maatwebsite
│       │   └── excel
│       │       ├── CODE_OF_CONDUCT.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── dump.rdb
│       │       ├── provides.json
│       │       └── src
│       │           ├── Maatwebsite
│       │           │   └── Excel
│       │           │       ├── Classes
│       │           │       │   ├── Cache.php
│       │           │       │   ├── FormatIdentifier.php
│       │           │       │   ├── LaravelExcelWorksheet.php
│       │           │       │   └── PHPExcel.php
│       │           │       ├── Collections
│       │           │       │   ├── CellCollection.php
│       │           │       │   ├── ExcelCollection.php
│       │           │       │   ├── RowCollection.php
│       │           │       │   └── SheetCollection.php
│       │           │       ├── Excel.php
│       │           │       ├── ExcelServiceProvider.php
│       │           │       ├── Exceptions
│       │           │       │   └── LaravelExcelException.php
│       │           │       ├── Facades
│       │           │       │   └── Excel.php
│       │           │       ├── Files
│       │           │       │   ├── ExcelFile.php
│       │           │       │   ├── ExportHandler.php
│       │           │       │   ├── File.php
│       │           │       │   ├── ImportHandler.php
│       │           │       │   └── NewExcelFile.php
│       │           │       ├── Filters
│       │           │       │   └── ChunkReadFilter.php
│       │           │       ├── Parsers
│       │           │       │   ├── CssParser.php
│       │           │       │   ├── ExcelParser.php
│       │           │       │   └── ViewParser.php
│       │           │       ├── Readers
│       │           │       │   ├── Batch.php
│       │           │       │   ├── ChunkedReadJob.php
│       │           │       │   ├── ConfigReader.php
│       │           │       │   ├── HtmlReader.php
│       │           │       │   └── LaravelExcelReader.php
│       │           │       └── Writers
│       │           │           ├── CellWriter.php
│       │           │           └── LaravelExcelWriter.php
│       │           └── config
│       │               └── excel.php
│       ├── mews
│       │   ├── captcha
│       │   │   ├── LICENCE.md
│       │   │   ├── LICENSE
│       │   │   ├── Makefile
│       │   │   ├── README.md
│       │   │   ├── assets
│       │   │   │   ├── backgrounds
│       │   │   │   │   ├── 01.png
│       │   │   │   │   ├── 02.png
│       │   │   │   │   ├── 03.png
│       │   │   │   │   ├── 04.png
│       │   │   │   │   ├── 05.png
│       │   │   │   │   ├── 06.png
│       │   │   │   │   ├── 07.png
│       │   │   │   │   ├── 08.png
│       │   │   │   │   ├── 09.png
│       │   │   │   │   ├── 10.png
│       │   │   │   │   ├── 11.png
│       │   │   │   │   └── 12.png
│       │   │   │   └── fonts
│       │   │   │       ├── ABeeZee_regular.ttf
│       │   │   │       ├── Asap_700.ttf
│       │   │   │       ├── Khand_500.ttf
│       │   │   │       ├── Open_Sans_regular.ttf
│       │   │   │       ├── Roboto_regular.ttf
│       │   │   │       ├── Ubuntu_regular.ttf
│       │   │   │       └── license
│       │   │   │           ├── LICENSE-2.0.txt
│       │   │   │           ├── OFL.txt
│       │   │   │           └── ubuntu-font-licence-1.0.txt
│       │   │   ├── config
│       │   │   │   └── captcha.php
│       │   │   └── src
│       │   │       ├── Captcha.php
│       │   │       ├── CaptchaController.php
│       │   │       ├── CaptchaServiceProvider.php
│       │   │       ├── Facades
│       │   │       │   └── Captcha.php
│       │   │       ├── LumenCaptchaController.php
│       │   │       └── helpers.php
│       │   └── purifier
│       │       ├── LICENSE
│       │       ├── config
│       │       │   └── purifier.php
│       │       └── src
│       │           ├── Facades
│       │           │   └── Purifier.php
│       │           ├── Purifier.php
│       │           ├── PurifierServiceProvider.php
│       │           └── helpers.php
│       ├── mobiledetect
│       │   └── mobiledetectlib
│       │       ├── LICENSE.txt
│       │       ├── Mobile_Detect.json
│       │       ├── Mobile_Detect.php
│       │       ├── README.md
│       │       ├── docker-compose.yml
│       │       ├── docs
│       │       │   ├── CONTRIBUTING.md
│       │       │   ├── HISTORY.md
│       │       │   ├── ISSUE_TEMPLATE.md
│       │       │   └── KNOWN_LIMITATIONS.md
│       │       ├── export
│       │       │   └── exportToJSON.php
│       │       ├── namespaced
│       │       │   └── Detection
│       │       │       └── MobileDetect.php
│       │       └── phpcs.xml
│       ├── modstart
│       │   └── modstart
│       │       ├── README.md
│       │       ├── config
│       │       │   ├── data.php
│       │       │   ├── env.php
│       │       │   ├── modstart.php
│       │       │   └── module.php
│       │       ├── lang
│       │       │   └── zh
│       │       │       ├── base.php
│       │       │       └── validation.php
│       │       ├── migrations
│       │       │   ├── 2015_12_22_213911_create_config.php
│       │       │   ├── 2015_12_22_215956_create_data.php
│       │       │   ├── 2015_12_22_215956_create_data_temp.php
│       │       │   ├── 2018_05_07_000000_modify_data_driver.php
│       │       │   ├── 2021_01_01_000000_create_admin.php
│       │       │   └── 2021_01_01_000000_create_admin_upload.php
│       │       ├── resources
│       │       │   ├── lang
│       │       │   │   └── zh
│       │       │   │       └── validation.php
│       │       │   └── stub
│       │       │       └── DynamicModel.stub
│       │       ├── src
│       │       │   ├── Admin
│       │       │   │   ├── Auth
│       │       │   │   │   ├── Admin.php
│       │       │   │   │   └── AdminPermission.php
│       │       │   │   ├── Concern
│       │       │   │   │   ├── HasAdminCRUD.php
│       │       │   │   │   ├── HasAdminDetail.php
│       │       │   │   │   ├── HasAdminForm.php
│       │       │   │   │   ├── HasAdminGrid.php
│       │       │   │   │   └── HasAdminQuickCRUD.php
│       │       │   │   ├── Config
│       │       │   │   │   ├── AdminConfig.php
│       │       │   │   │   └── AdminMenu.php
│       │       │   │   ├── Controller
│       │       │   │   │   ├── AdminLogController.php
│       │       │   │   │   ├── AdminRoleController.php
│       │       │   │   │   ├── AdminUserController.php
│       │       │   │   │   ├── AuthController.php
│       │       │   │   │   ├── DataController.php
│       │       │   │   │   ├── ProfileController.php
│       │       │   │   │   ├── SystemController.php
│       │       │   │   │   └── UtilController.php
│       │       │   │   ├── Layout
│       │       │   │   │   ├── AdminCRUDBuilder.php
│       │       │   │   │   ├── AdminConfigBuilder.php
│       │       │   │   │   ├── AdminDialogPage.php
│       │       │   │   │   └── AdminPage.php
│       │       │   │   ├── Middleware
│       │       │   │   │   ├── AuthMiddleware.php
│       │       │   │   │   └── BootstrapMiddleware.php
│       │       │   │   ├── ModStartAdmin.php
│       │       │   │   ├── Model
│       │       │   │   │   ├── AdminLog.php
│       │       │   │   │   ├── AdminLogData.php
│       │       │   │   │   ├── AdminRole.php
│       │       │   │   │   ├── AdminRoleRule.php
│       │       │   │   │   └── AdminUser.php
│       │       │   │   ├── Type
│       │       │   │   │   └── AdminLogType.php
│       │       │   │   └── Widget
│       │       │   │       ├── DashboardItemA.php
│       │       │   │       └── SecurityTooltipBox.php
│       │       │   ├── App
│       │       │   │   ├── Api
│       │       │   │   │   ├── Middleware
│       │       │   │   │   │   ├── BootstrapMiddleware.php
│       │       │   │   │   │   └── SessionMiddleware.php
│       │       │   │   │   └── ModStartApi.php
│       │       │   │   ├── Core
│       │       │   │   │   └── AccessGate.php
│       │       │   │   ├── OpenApi
│       │       │   │   │   ├── Middleware
│       │       │   │   │   │   ├── AbstractKeySecretSimpleSignCheckMiddleware.php
│       │       │   │   │   │   └── BootstrapMiddleware.php
│       │       │   │   │   └── ModStartOpenApi.php
│       │       │   │   └── Web
│       │       │   │       ├── Layout
│       │       │   │       │   ├── WebConfigBuilder.php
│       │       │   │       │   ├── WebDialogPage.php
│       │       │   │       │   └── WebPage.php
│       │       │   │       ├── Middleware
│       │       │   │       │   └── BootstrapMiddleware.php
│       │       │   │       └── ModStartWeb.php
│       │       │   ├── Command
│       │       │   │   ├── ModuleDisableCommand.php
│       │       │   │   ├── ModuleEnableCommand.php
│       │       │   │   ├── ModuleInstallAllCommand.php
│       │       │   │   ├── ModuleInstallCommand.php
│       │       │   │   └── ModuleUninstallCommand.php
│       │       │   ├── Core
│       │       │   │   ├── Assets
│       │       │   │   │   ├── AssetsPath.php
│       │       │   │   │   ├── AssetsUtil.php
│       │       │   │   │   └── Driver
│       │       │   │   │       ├── CdnAssetsPath.php
│       │       │   │   │       └── LocalAssetsPath.php
│       │       │   │   ├── Config
│       │       │   │   │   ├── Driver
│       │       │   │   │   │   └── DatabaseMConfig.php
│       │       │   │   │   └── MConfig.php
│       │       │   │   ├── Dao
│       │       │   │   │   ├── DModelUtil.php
│       │       │   │   │   ├── DynamicModel.php
│       │       │   │   │   ├── ModelManageUtil.php
│       │       │   │   │   ├── ModelUtil.php
│       │       │   │   │   ├── TenantModelUtil.php
│       │       │   │   │   └── TenantType.php
│       │       │   │   ├── Env
│       │       │   │   │   └── EnvUtil.php
│       │       │   │   ├── Events
│       │       │   │   │   ├── ModuleDisabledEvent.php
│       │       │   │   │   ├── ModuleEnabledEvent.php
│       │       │   │   │   ├── ModuleInstalledEvent.php
│       │       │   │   │   └── ModuleUninstalledEvent.php
│       │       │   │   ├── Exception
│       │       │   │   │   ├── BizException.php
│       │       │   │   │   ├── ExceptionReportHandleTrait.php
│       │       │   │   │   └── ResultException.php
│       │       │   │   ├── Facades
│       │       │   │   │   └── ModStart.php
│       │       │   │   ├── Hook
│       │       │   │   │   └── ModStartHook.php
│       │       │   │   ├── Input
│       │       │   │   │   ├── InputPackage.php
│       │       │   │   │   ├── Request.php
│       │       │   │   │   ├── Response.php
│       │       │   │   │   └── StaticQueryUrl.php
│       │       │   │   ├── Job
│       │       │   │   │   ├── BaseJob.php
│       │       │   │   │   └── BaseRetryableJob.php
│       │       │   │   ├── Type
│       │       │   │   │   ├── BaseType.php
│       │       │   │   │   ├── SortDirection.php
│       │       │   │   │   └── TypeUtil.php
│       │       │   │   ├── Util
│       │       │   │   │   ├── AgentUtil.php
│       │       │   │   │   ├── ArrayUtil.php
│       │       │   │   │   ├── AudioUtil.php
│       │       │   │   │   ├── CRUDUtil.php
│       │       │   │   │   ├── CmsUtil.php
│       │       │   │   │   ├── CodeUtil.php
│       │       │   │   │   ├── ColorUtil.php
│       │       │   │   │   ├── ConstantUtil.php
│       │       │   │   │   ├── ConvertUtil.php
│       │       │   │   │   ├── CurlUtil.php
│       │       │   │   │   ├── DBLockUtil.php
│       │       │   │   │   ├── EncodeUtil.php
│       │       │   │   │   ├── EnvUtil.php
│       │       │   │   │   ├── FileUtil.php
│       │       │   │   │   ├── FormatUtil.php
│       │       │   │   │   ├── HtmlUtil.php
│       │       │   │   │   ├── IdUtil.php
│       │       │   │   │   ├── ImageUtil.php
│       │       │   │   │   ├── LBSUtil.php
│       │       │   │   │   ├── LotteryUtil.php
│       │       │   │   │   ├── MemCacheUtil.php
│       │       │   │   │   ├── NumberUtil.php
│       │       │   │   │   ├── PageHtmlUtil.php
│       │       │   │   │   ├── PathUtil.php
│       │       │   │   │   ├── QrcodeUtil.php
│       │       │   │   │   ├── RandomUtil.php
│       │       │   │   │   ├── ReUtil.php
│       │       │   │   │   ├── RedisUtil.php
│       │       │   │   │   ├── RouteUtil.php
│       │       │   │   │   ├── SecureUtil.php
│       │       │   │   │   ├── ShellUtil.php
│       │       │   │   │   ├── SignUtil.php
│       │       │   │   │   ├── StrUtil.php
│       │       │   │   │   ├── StubUtil.php
│       │       │   │   │   ├── Support
│       │       │   │   │   │   └── MP3File.php
│       │       │   │   │   ├── TagUtil.php
│       │       │   │   │   ├── TimeUtil.php
│       │       │   │   │   ├── TreeUtil.php
│       │       │   │   │   ├── VersionUtil.php
│       │       │   │   │   └── XKeywordsUtil.php
│       │       │   │   └── View
│       │       │   │       └── ResponsiveViewTrait.php
│       │       │   ├── Data
│       │       │   │   ├── AbstractDataRepository.php
│       │       │   │   ├── AbstractDataStorage.php
│       │       │   │   ├── AbstractRemoteDataStorage.php
│       │       │   │   ├── DataManager.php
│       │       │   │   ├── FileManager.php
│       │       │   │   ├── Repository
│       │       │   │   │   └── DatabaseDataRepository.php
│       │       │   │   ├── Storage
│       │       │   │   │   └── FileDataStorage.php
│       │       │   │   ├── Traits
│       │       │   │   │   └── LocalMultipartUploadTrait.php
│       │       │   │   └── UeditorManager.php
│       │       │   ├── Detail
│       │       │   │   ├── Detail.php
│       │       │   │   └── Type
│       │       │   │       └── DetailEngine.php
│       │       │   ├── Developer
│       │       │   │   └── LangUtil.php
│       │       │   ├── Field
│       │       │   │   ├── AbstractField.php
│       │       │   │   ├── AreaChina.php
│       │       │   │   ├── Audio.php
│       │       │   │   ├── AutoRenderedFieldValue.php
│       │       │   │   ├── Captcha.php
│       │       │   │   ├── CascadeGroup.php
│       │       │   │   ├── Checkbox.php
│       │       │   │   ├── Code.php
│       │       │   │   ├── Color.php
│       │       │   │   ├── Concern
│       │       │   │   │   └── CanCascadeFields.php
│       │       │   │   ├── Currency.php
│       │       │   │   ├── Custom.php
│       │       │   │   ├── CustomField.php
│       │       │   │   ├── Date.php
│       │       │   │   ├── Datetime.php
│       │       │   │   ├── Decimal.php
│       │       │   │   ├── Display.php
│       │       │   │   ├── File.php
│       │       │   │   ├── FileTemp.php
│       │       │   │   ├── Hidden.php
│       │       │   │   ├── Html.php
│       │       │   │   ├── Icon.php
│       │       │   │   ├── Id.php
│       │       │   │   ├── Image.php
│       │       │   │   ├── Images.php
│       │       │   │   ├── ImagesTemp.php
│       │       │   │   ├── KeyValueList.php
│       │       │   │   ├── Link.php
│       │       │   │   ├── Markdown.php
│       │       │   │   ├── Number.php
│       │       │   │   ├── Password.php
│       │       │   │   ├── Percent.php
│       │       │   │   ├── Radio.php
│       │       │   │   ├── RichHtml.php
│       │       │   │   ├── Select.php
│       │       │   │   ├── SwitchField.php
│       │       │   │   ├── Tags.php
│       │       │   │   ├── Text.php
│       │       │   │   ├── Textarea.php
│       │       │   │   ├── Time.php
│       │       │   │   ├── Tree.php
│       │       │   │   ├── Type
│       │       │   │   │   └── FieldRenderMode.php
│       │       │   │   ├── Type.php
│       │       │   │   ├── Values.php
│       │       │   │   └── Video.php
│       │       │   ├── Form
│       │       │   │   ├── Concern
│       │       │   │   │   └── HasCascadeFields.php
│       │       │   │   ├── Form.php
│       │       │   │   └── Type
│       │       │   │       ├── FormEngine.php
│       │       │   │       └── FormMode.php
│       │       │   ├── Grid
│       │       │   │   ├── Concerns
│       │       │   │   │   ├── HasGridFilter.php
│       │       │   │   │   ├── HasItemOperate.php
│       │       │   │   │   ├── HasPaginator.php
│       │       │   │   │   └── HasSort.php
│       │       │   │   ├── Displayer
│       │       │   │   │   ├── AbstractDisplayer.php
│       │       │   │   │   ├── ItemOperate.php
│       │       │   │   │   └── Tools.php
│       │       │   │   ├── Filter
│       │       │   │   │   ├── AbstractFilter.php
│       │       │   │   │   ├── Between.php
│       │       │   │   │   ├── Custom.php
│       │       │   │   │   ├── Eq.php
│       │       │   │   │   ├── Field
│       │       │   │   │   │   ├── AbstractFilterField.php
│       │       │   │   │   │   ├── Date.php
│       │       │   │   │   │   ├── Datetime.php
│       │       │   │   │   │   ├── GroupTags.php
│       │       │   │   │   │   ├── Radio.php
│       │       │   │   │   │   ├── Select.php
│       │       │   │   │   │   └── Text.php
│       │       │   │   │   ├── Gt.php
│       │       │   │   │   ├── Like.php
│       │       │   │   │   ├── Likes.php
│       │       │   │   │   ├── Lt.php
│       │       │   │   │   ├── Range.php
│       │       │   │   │   └── Where.php
│       │       │   │   ├── Grid.php
│       │       │   │   ├── GridFilter.php
│       │       │   │   ├── GridFilterScope.php
│       │       │   │   ├── Model.php
│       │       │   │   └── Type
│       │       │   │       └── GridEngine.php
│       │       │   ├── Layout
│       │       │   │   ├── Buildable.php
│       │       │   │   ├── Column.php
│       │       │   │   ├── LayoutGrid.php
│       │       │   │   ├── Page.php
│       │       │   │   └── Row.php
│       │       │   ├── ModStart.php
│       │       │   ├── ModStartServiceProvider.php
│       │       │   ├── Module
│       │       │   │   ├── ModuleBaseController.php
│       │       │   │   ├── ModuleClassLoader.php
│       │       │   │   ├── ModuleManager.php
│       │       │   │   └── ModuleStatus.php
│       │       │   ├── Repository
│       │       │   │   ├── EloquentRepository.php
│       │       │   │   ├── EmptyItem.php
│       │       │   │   ├── Filter
│       │       │   │   │   ├── HasRepositoryFilter.php
│       │       │   │   │   └── RepositoryFilter.php
│       │       │   │   ├── Repository.php
│       │       │   │   ├── RepositoryInterface.php
│       │       │   │   ├── RepositoryUtil.php
│       │       │   │   ├── SortRepositoryInterface.php
│       │       │   │   └── TreeRepositoryInterface.php
│       │       │   ├── Support
│       │       │   │   ├── Concern
│       │       │   │   │   ├── HasArguments.php
│       │       │   │   │   ├── HasBuilder.php
│       │       │   │   │   ├── HasFields.php
│       │       │   │   │   ├── HasFluentAttribute.php
│       │       │   │   │   └── HasPageTitleInfo.php
│       │       │   │   └── Manager
│       │       │   │       ├── FieldManager.php
│       │       │   │       └── WidgetManager.php
│       │       │   ├── Widget
│       │       │   │   ├── AbstractWidget.php
│       │       │   │   ├── Box.php
│       │       │   │   ├── ButtonAjaxRequest.php
│       │       │   │   ├── ButtonDialogRequest.php
│       │       │   │   ├── Chart
│       │       │   │   │   └── Line.php
│       │       │   │   ├── StatusText.php
│       │       │   │   ├── TextAction.php
│       │       │   │   ├── TextAjaxRequest.php
│       │       │   │   ├── TextDialogRequest.php
│       │       │   │   ├── TextLink.php
│       │       │   │   └── Traits
│       │       │   │       └── DSTrait.php
│       │       │   └── helpers.php
│       │       └── views
│       │           ├── admin
│       │           │   ├── data
│       │           │   │   └── fileManager.blade.php
│       │           │   ├── dialog
│       │           │   │   └── linkSelector.blade.php
│       │           │   ├── dialogFrame.blade.php
│       │           │   ├── dialogPage.blade.php
│       │           │   ├── frame.blade.php
│       │           │   ├── login.blade.php
│       │           │   ├── page.blade.php
│       │           │   └── widget
│       │           │       └── securityTooltipBox.blade.php
│       │           ├── app
│       │           │   └── web
│       │           │       ├── dialogFrame.blade.php
│       │           │       ├── dialogPage.blade.php
│       │           │       ├── page.blade.php
│       │           │       ├── pageBlank.blade.php
│       │           │       └── pageNarrow.blade.php
│       │           ├── core
│       │           │   ├── detail
│       │           │   │   └── index.blade.php
│       │           │   ├── field
│       │           │   │   ├── areaChina.blade.php
│       │           │   │   ├── audio-detail.blade.php
│       │           │   │   ├── audio.blade.php
│       │           │   │   ├── autoRenderedField-detail.blade.php
│       │           │   │   ├── autoRenderedField-form.blade.php
│       │           │   │   ├── autoRenderedField-grid.blade.php
│       │           │   │   ├── captcha.blade.php
│       │           │   │   ├── checkbox-detail.blade.php
│       │           │   │   ├── checkbox-grid.blade.php
│       │           │   │   ├── checkbox.blade.php
│       │           │   │   ├── code-detail.blade.php
│       │           │   │   ├── code-grid.blade.php
│       │           │   │   ├── code.blade.php
│       │           │   │   ├── color.blade.php
│       │           │   │   ├── customField-detail.blade.php
│       │           │   │   ├── customField-render.blade.php
│       │           │   │   ├── customField.blade.php
│       │           │   │   ├── date.blade.php
│       │           │   │   ├── datetime.blade.php
│       │           │   │   ├── display.blade.php
│       │           │   │   ├── file-detail.blade.php
│       │           │   │   ├── file.blade.php
│       │           │   │   ├── fileTemp.blade.php
│       │           │   │   ├── hidden.blade.php
│       │           │   │   ├── icon-grid.blade.php
│       │           │   │   ├── icon.blade.php
│       │           │   │   ├── image-detail.blade.php
│       │           │   │   ├── image-grid.blade.php
│       │           │   │   ├── image.blade.php
│       │           │   │   ├── images-detail.blade.php
│       │           │   │   ├── images-grid.blade.php
│       │           │   │   ├── images.blade.php
│       │           │   │   ├── imagesTemp.blade.php
│       │           │   │   ├── keyValueList-detail.blade.php
│       │           │   │   ├── keyValueList-grid.blade.php
│       │           │   │   ├── keyValueList.blade.php
│       │           │   │   ├── link.blade.php
│       │           │   │   ├── markdown-detail.blade.php
│       │           │   │   ├── markdown.blade.php
│       │           │   │   ├── number-detail.blade.php
│       │           │   │   ├── number.blade.php
│       │           │   │   ├── password.blade.php
│       │           │   │   ├── percent-detail.blade.php
│       │           │   │   ├── percent.blade.php
│       │           │   │   ├── radio-detail.blade.php
│       │           │   │   ├── radio-grid.blade.php
│       │           │   │   ├── radio.blade.php
│       │           │   │   ├── richHtml-detail.blade.php
│       │           │   │   ├── richHtml-grid.blade.php
│       │           │   │   ├── richHtml.blade.php
│       │           │   │   ├── select-detail.blade.php
│       │           │   │   ├── select-grid.blade.php
│       │           │   │   ├── select.blade.php
│       │           │   │   ├── switchField-detail.blade.php
│       │           │   │   ├── switchField-grid.blade.php
│       │           │   │   ├── switchField.blade.php
│       │           │   │   ├── tags-detail.blade.php
│       │           │   │   ├── tags-grid.blade.php
│       │           │   │   ├── tags.blade.php
│       │           │   │   ├── text-detail.blade.php
│       │           │   │   ├── text.blade.php
│       │           │   │   ├── textarea-detail.blade.php
│       │           │   │   ├── textarea.blade.php
│       │           │   │   ├── time.blade.php
│       │           │   │   ├── tree-detail.blade.php
│       │           │   │   ├── tree-grid.blade.php
│       │           │   │   ├── tree.blade.php
│       │           │   │   ├── type-detail.blade.php
│       │           │   │   ├── type-grid.blade.php
│       │           │   │   ├── type.blade.php
│       │           │   │   ├── values.blade.php
│       │           │   │   ├── video-detail.blade.php
│       │           │   │   └── video.blade.php
│       │           │   ├── form
│       │           │   │   └── index.blade.php
│       │           │   ├── grid
│       │           │   │   ├── filter
│       │           │   │   │   ├── eq-radio.blade.php
│       │           │   │   │   ├── eq-select.blade.php
│       │           │   │   │   ├── eq-text.blade.php
│       │           │   │   │   ├── like-text.blade.php
│       │           │   │   │   ├── likes-groupTags.blade.php
│       │           │   │   │   ├── likes-text.blade.php
│       │           │   │   │   ├── range-date.blade.php
│       │           │   │   │   └── range-datetime.blade.php
│       │           │   │   ├── index.blade.php
│       │           │   │   ├── simple.blade.php
│       │           │   │   └── treeAncestor.blade.php
│       │           │   ├── metrix
│       │           │   │   └── index.blade.php
│       │           │   └── msg
│       │           │       ├── 403.blade.php
│       │           │       ├── 404.blade.php
│       │           │       ├── 500.blade.php
│       │           │       ├── frame.blade.php
│       │           │       └── msg.blade.php
│       │           ├── layout
│       │           │   └── frame.blade.php
│       │           ├── part
│       │           │   ├── css.blade.php
│       │           │   ├── js.blade.php
│       │           │   ├── script.blade.php
│       │           │   └── style.blade.php
│       │           └── widget
│       │               ├── box.blade.php
│       │               └── chart.blade.php
│       ├── monolog
│       │   └── monolog
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── phpstan.neon.dist
│       │       └── src
│       │           └── Monolog
│       │               ├── ErrorHandler.php
│       │               ├── Formatter
│       │               │   ├── ChromePHPFormatter.php
│       │               │   ├── ElasticaFormatter.php
│       │               │   ├── FlowdockFormatter.php
│       │               │   ├── FluentdFormatter.php
│       │               │   ├── FormatterInterface.php
│       │               │   ├── GelfMessageFormatter.php
│       │               │   ├── HtmlFormatter.php
│       │               │   ├── JsonFormatter.php
│       │               │   ├── LineFormatter.php
│       │               │   ├── LogglyFormatter.php
│       │               │   ├── LogstashFormatter.php
│       │               │   ├── MongoDBFormatter.php
│       │               │   ├── NormalizerFormatter.php
│       │               │   ├── ScalarFormatter.php
│       │               │   └── WildfireFormatter.php
│       │               ├── Handler
│       │               │   ├── AbstractHandler.php
│       │               │   ├── AbstractProcessingHandler.php
│       │               │   ├── AbstractSyslogHandler.php
│       │               │   ├── AmqpHandler.php
│       │               │   ├── BrowserConsoleHandler.php
│       │               │   ├── BufferHandler.php
│       │               │   ├── ChromePHPHandler.php
│       │               │   ├── CouchDBHandler.php
│       │               │   ├── CubeHandler.php
│       │               │   ├── Curl
│       │               │   │   └── Util.php
│       │               │   ├── DeduplicationHandler.php
│       │               │   ├── DoctrineCouchDBHandler.php
│       │               │   ├── DynamoDbHandler.php
│       │               │   ├── ElasticSearchHandler.php
│       │               │   ├── ErrorLogHandler.php
│       │               │   ├── FilterHandler.php
│       │               │   ├── FingersCrossed
│       │               │   │   ├── ActivationStrategyInterface.php
│       │               │   │   ├── ChannelLevelActivationStrategy.php
│       │               │   │   └── ErrorLevelActivationStrategy.php
│       │               │   ├── FingersCrossedHandler.php
│       │               │   ├── FirePHPHandler.php
│       │               │   ├── FleepHookHandler.php
│       │               │   ├── FlowdockHandler.php
│       │               │   ├── FormattableHandlerInterface.php
│       │               │   ├── FormattableHandlerTrait.php
│       │               │   ├── GelfHandler.php
│       │               │   ├── GroupHandler.php
│       │               │   ├── HandlerInterface.php
│       │               │   ├── HandlerWrapper.php
│       │               │   ├── HipChatHandler.php
│       │               │   ├── IFTTTHandler.php
│       │               │   ├── InsightOpsHandler.php
│       │               │   ├── LogEntriesHandler.php
│       │               │   ├── LogglyHandler.php
│       │               │   ├── MailHandler.php
│       │               │   ├── MandrillHandler.php
│       │               │   ├── MissingExtensionException.php
│       │               │   ├── MongoDBHandler.php
│       │               │   ├── NativeMailerHandler.php
│       │               │   ├── NewRelicHandler.php
│       │               │   ├── NullHandler.php
│       │               │   ├── PHPConsoleHandler.php
│       │               │   ├── ProcessableHandlerInterface.php
│       │               │   ├── ProcessableHandlerTrait.php
│       │               │   ├── PsrHandler.php
│       │               │   ├── PushoverHandler.php
│       │               │   ├── RavenHandler.php
│       │               │   ├── RedisHandler.php
│       │               │   ├── RollbarHandler.php
│       │               │   ├── RotatingFileHandler.php
│       │               │   ├── SamplingHandler.php
│       │               │   ├── Slack
│       │               │   │   └── SlackRecord.php
│       │               │   ├── SlackHandler.php
│       │               │   ├── SlackWebhookHandler.php
│       │               │   ├── SlackbotHandler.php
│       │               │   ├── SocketHandler.php
│       │               │   ├── StreamHandler.php
│       │               │   ├── SwiftMailerHandler.php
│       │               │   ├── SyslogHandler.php
│       │               │   ├── SyslogUdp
│       │               │   │   └── UdpSocket.php
│       │               │   ├── SyslogUdpHandler.php
│       │               │   ├── TestHandler.php
│       │               │   ├── WhatFailureGroupHandler.php
│       │               │   └── ZendMonitorHandler.php
│       │               ├── Logger.php
│       │               ├── Processor
│       │               │   ├── GitProcessor.php
│       │               │   ├── IntrospectionProcessor.php
│       │               │   ├── MemoryPeakUsageProcessor.php
│       │               │   ├── MemoryProcessor.php
│       │               │   ├── MemoryUsageProcessor.php
│       │               │   ├── MercurialProcessor.php
│       │               │   ├── ProcessIdProcessor.php
│       │               │   ├── ProcessorInterface.php
│       │               │   ├── PsrLogMessageProcessor.php
│       │               │   ├── TagProcessor.php
│       │               │   ├── UidProcessor.php
│       │               │   └── WebProcessor.php
│       │               ├── Registry.php
│       │               ├── ResettableInterface.php
│       │               ├── SignalHandler.php
│       │               └── Utils.php
│       ├── mtdowling
│       │   └── cron-expression
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           └── Cron
│       │               ├── AbstractField.php
│       │               ├── CronExpression.php
│       │               ├── DayOfMonthField.php
│       │               ├── DayOfWeekField.php
│       │               ├── FieldFactory.php
│       │               ├── FieldInterface.php
│       │               ├── HoursField.php
│       │               ├── MinutesField.php
│       │               ├── MonthField.php
│       │               └── YearField.php
│       ├── nesbot
│       │   └── carbon
│       │       ├── LICENSE
│       │       ├── bin
│       │       │   ├── upgrade-carbon
│       │       │   └── upgrade-carbon.bat
│       │       ├── readme.md
│       │       └── src
│       │           ├── Carbon
│       │           │   ├── Carbon.php
│       │           │   ├── CarbonInterval.php
│       │           │   ├── CarbonPeriod.php
│       │           │   ├── Exceptions
│       │           │   │   └── InvalidDateException.php
│       │           │   ├── Laravel
│       │           │   │   └── ServiceProvider.php
│       │           │   ├── Translator.php
│       │           │   └── Upgrade.php
│       │           └── JsonSerializable.php
│       ├── nikic
│       │   └── php-parser
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── UPGRADE-1.0.md
│       │       ├── UPGRADE-2.0.md
│       │       ├── bin
│       │       │   └── php-parse
│       │       ├── doc
│       │       │   ├── 0_Introduction.markdown
│       │       │   ├── 2_Usage_of_basic_components.markdown
│       │       │   ├── 3_Other_node_tree_representations.markdown
│       │       │   ├── 4_Code_generation.markdown
│       │       │   └── component
│       │       │       ├── Error.markdown
│       │       │       └── Lexer.markdown
│       │       ├── grammar
│       │       │   ├── README.md
│       │       │   ├── analyze.php
│       │       │   ├── parser.template
│       │       │   ├── php5.y
│       │       │   ├── php7.y
│       │       │   ├── rebuildParsers.php
│       │       │   ├── tokens.template
│       │       │   └── tokens.y
│       │       └── lib
│       │           ├── PhpParser
│       │           │   ├── Autoloader.php
│       │           │   ├── Builder
│       │           │   │   ├── Class_.php
│       │           │   │   ├── Declaration.php
│       │           │   │   ├── FunctionLike.php
│       │           │   │   ├── Function_.php
│       │           │   │   ├── Interface_.php
│       │           │   │   ├── Method.php
│       │           │   │   ├── Namespace_.php
│       │           │   │   ├── Param.php
│       │           │   │   ├── Property.php
│       │           │   │   ├── Trait_.php
│       │           │   │   └── Use_.php
│       │           │   ├── Builder.php
│       │           │   ├── BuilderAbstract.php
│       │           │   ├── BuilderFactory.php
│       │           │   ├── Comment
│       │           │   │   └── Doc.php
│       │           │   ├── Comment.php
│       │           │   ├── Error.php
│       │           │   ├── Lexer
│       │           │   │   └── Emulative.php
│       │           │   ├── Lexer.php
│       │           │   ├── Node
│       │           │   │   ├── Arg.php
│       │           │   │   ├── Const_.php
│       │           │   │   ├── Expr
│       │           │   │   │   ├── ArrayDimFetch.php
│       │           │   │   │   ├── ArrayItem.php
│       │           │   │   │   ├── Array_.php
│       │           │   │   │   ├── Assign.php
│       │           │   │   │   ├── AssignOp
│       │           │   │   │   │   ├── BitwiseAnd.php
│       │           │   │   │   │   ├── BitwiseOr.php
│       │           │   │   │   │   ├── BitwiseXor.php
│       │           │   │   │   │   ├── Concat.php
│       │           │   │   │   │   ├── Div.php
│       │           │   │   │   │   ├── Minus.php
│       │           │   │   │   │   ├── Mod.php
│       │           │   │   │   │   ├── Mul.php
│       │           │   │   │   │   ├── Plus.php
│       │           │   │   │   │   ├── Pow.php
│       │           │   │   │   │   ├── ShiftLeft.php
│       │           │   │   │   │   └── ShiftRight.php
│       │           │   │   │   ├── AssignOp.php
│       │           │   │   │   ├── AssignRef.php
│       │           │   │   │   ├── BinaryOp
│       │           │   │   │   │   ├── BitwiseAnd.php
│       │           │   │   │   │   ├── BitwiseOr.php
│       │           │   │   │   │   ├── BitwiseXor.php
│       │           │   │   │   │   ├── BooleanAnd.php
│       │           │   │   │   │   ├── BooleanOr.php
│       │           │   │   │   │   ├── Coalesce.php
│       │           │   │   │   │   ├── Concat.php
│       │           │   │   │   │   ├── Div.php
│       │           │   │   │   │   ├── Equal.php
│       │           │   │   │   │   ├── Greater.php
│       │           │   │   │   │   ├── GreaterOrEqual.php
│       │           │   │   │   │   ├── Identical.php
│       │           │   │   │   │   ├── LogicalAnd.php
│       │           │   │   │   │   ├── LogicalOr.php
│       │           │   │   │   │   ├── LogicalXor.php
│       │           │   │   │   │   ├── Minus.php
│       │           │   │   │   │   ├── Mod.php
│       │           │   │   │   │   ├── Mul.php
│       │           │   │   │   │   ├── NotEqual.php
│       │           │   │   │   │   ├── NotIdentical.php
│       │           │   │   │   │   ├── Plus.php
│       │           │   │   │   │   ├── Pow.php
│       │           │   │   │   │   ├── ShiftLeft.php
│       │           │   │   │   │   ├── ShiftRight.php
│       │           │   │   │   │   ├── Smaller.php
│       │           │   │   │   │   ├── SmallerOrEqual.php
│       │           │   │   │   │   └── Spaceship.php
│       │           │   │   │   ├── BinaryOp.php
│       │           │   │   │   ├── BitwiseNot.php
│       │           │   │   │   ├── BooleanNot.php
│       │           │   │   │   ├── Cast
│       │           │   │   │   │   ├── Array_.php
│       │           │   │   │   │   ├── Bool_.php
│       │           │   │   │   │   ├── Double.php
│       │           │   │   │   │   ├── Int_.php
│       │           │   │   │   │   ├── Object_.php
│       │           │   │   │   │   ├── String_.php
│       │           │   │   │   │   └── Unset_.php
│       │           │   │   │   ├── Cast.php
│       │           │   │   │   ├── ClassConstFetch.php
│       │           │   │   │   ├── Clone_.php
│       │           │   │   │   ├── Closure.php
│       │           │   │   │   ├── ClosureUse.php
│       │           │   │   │   ├── ConstFetch.php
│       │           │   │   │   ├── Empty_.php
│       │           │   │   │   ├── ErrorSuppress.php
│       │           │   │   │   ├── Eval_.php
│       │           │   │   │   ├── Exit_.php
│       │           │   │   │   ├── FuncCall.php
│       │           │   │   │   ├── Include_.php
│       │           │   │   │   ├── Instanceof_.php
│       │           │   │   │   ├── Isset_.php
│       │           │   │   │   ├── List_.php
│       │           │   │   │   ├── MethodCall.php
│       │           │   │   │   ├── New_.php
│       │           │   │   │   ├── PostDec.php
│       │           │   │   │   ├── PostInc.php
│       │           │   │   │   ├── PreDec.php
│       │           │   │   │   ├── PreInc.php
│       │           │   │   │   ├── Print_.php
│       │           │   │   │   ├── PropertyFetch.php
│       │           │   │   │   ├── ShellExec.php
│       │           │   │   │   ├── StaticCall.php
│       │           │   │   │   ├── StaticPropertyFetch.php
│       │           │   │   │   ├── Ternary.php
│       │           │   │   │   ├── UnaryMinus.php
│       │           │   │   │   ├── UnaryPlus.php
│       │           │   │   │   ├── Variable.php
│       │           │   │   │   ├── YieldFrom.php
│       │           │   │   │   └── Yield_.php
│       │           │   │   ├── Expr.php
│       │           │   │   ├── FunctionLike.php
│       │           │   │   ├── Name
│       │           │   │   │   ├── FullyQualified.php
│       │           │   │   │   └── Relative.php
│       │           │   │   ├── Name.php
│       │           │   │   ├── Param.php
│       │           │   │   ├── Scalar
│       │           │   │   │   ├── DNumber.php
│       │           │   │   │   ├── Encapsed.php
│       │           │   │   │   ├── EncapsedStringPart.php
│       │           │   │   │   ├── LNumber.php
│       │           │   │   │   ├── MagicConst
│       │           │   │   │   │   ├── Class_.php
│       │           │   │   │   │   ├── Dir.php
│       │           │   │   │   │   ├── File.php
│       │           │   │   │   │   ├── Function_.php
│       │           │   │   │   │   ├── Line.php
│       │           │   │   │   │   ├── Method.php
│       │           │   │   │   │   ├── Namespace_.php
│       │           │   │   │   │   └── Trait_.php
│       │           │   │   │   ├── MagicConst.php
│       │           │   │   │   └── String_.php
│       │           │   │   ├── Scalar.php
│       │           │   │   ├── Stmt
│       │           │   │   │   ├── Break_.php
│       │           │   │   │   ├── Case_.php
│       │           │   │   │   ├── Catch_.php
│       │           │   │   │   ├── ClassConst.php
│       │           │   │   │   ├── ClassLike.php
│       │           │   │   │   ├── ClassMethod.php
│       │           │   │   │   ├── Class_.php
│       │           │   │   │   ├── Const_.php
│       │           │   │   │   ├── Continue_.php
│       │           │   │   │   ├── DeclareDeclare.php
│       │           │   │   │   ├── Declare_.php
│       │           │   │   │   ├── Do_.php
│       │           │   │   │   ├── Echo_.php
│       │           │   │   │   ├── ElseIf_.php
│       │           │   │   │   ├── Else_.php
│       │           │   │   │   ├── For_.php
│       │           │   │   │   ├── Foreach_.php
│       │           │   │   │   ├── Function_.php
│       │           │   │   │   ├── Global_.php
│       │           │   │   │   ├── Goto_.php
│       │           │   │   │   ├── GroupUse.php
│       │           │   │   │   ├── HaltCompiler.php
│       │           │   │   │   ├── If_.php
│       │           │   │   │   ├── InlineHTML.php
│       │           │   │   │   ├── Interface_.php
│       │           │   │   │   ├── Label.php
│       │           │   │   │   ├── Namespace_.php
│       │           │   │   │   ├── Nop.php
│       │           │   │   │   ├── Property.php
│       │           │   │   │   ├── PropertyProperty.php
│       │           │   │   │   ├── Return_.php
│       │           │   │   │   ├── StaticVar.php
│       │           │   │   │   ├── Static_.php
│       │           │   │   │   ├── Switch_.php
│       │           │   │   │   ├── Throw_.php
│       │           │   │   │   ├── TraitUse.php
│       │           │   │   │   ├── TraitUseAdaptation
│       │           │   │   │   │   ├── Alias.php
│       │           │   │   │   │   └── Precedence.php
│       │           │   │   │   ├── TraitUseAdaptation.php
│       │           │   │   │   ├── Trait_.php
│       │           │   │   │   ├── TryCatch.php
│       │           │   │   │   ├── Unset_.php
│       │           │   │   │   ├── UseUse.php
│       │           │   │   │   ├── Use_.php
│       │           │   │   │   └── While_.php
│       │           │   │   └── Stmt.php
│       │           │   ├── Node.php
│       │           │   ├── NodeAbstract.php
│       │           │   ├── NodeDumper.php
│       │           │   ├── NodeTraverser.php
│       │           │   ├── NodeTraverserInterface.php
│       │           │   ├── NodeVisitor
│       │           │   │   └── NameResolver.php
│       │           │   ├── NodeVisitor.php
│       │           │   ├── NodeVisitorAbstract.php
│       │           │   ├── Parser
│       │           │   │   ├── Multiple.php
│       │           │   │   ├── Php5.php
│       │           │   │   ├── Php7.php
│       │           │   │   └── Tokens.php
│       │           │   ├── Parser.php
│       │           │   ├── ParserAbstract.php
│       │           │   ├── ParserFactory.php
│       │           │   ├── PrettyPrinter
│       │           │   │   └── Standard.php
│       │           │   ├── PrettyPrinterAbstract.php
│       │           │   ├── Serializer
│       │           │   │   └── XML.php
│       │           │   ├── Serializer.php
│       │           │   ├── Unserializer
│       │           │   │   └── XML.php
│       │           │   └── Unserializer.php
│       │           └── bootstrap.php
│       ├── paragonie
│       │   └── random_compat
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── RATIONALE.md
│       │       ├── README.md
│       │       ├── SECURITY.md
│       │       ├── build-phar.sh
│       │       ├── dist
│       │       │   ├── random_compat.phar.pubkey
│       │       │   └── random_compat.phar.pubkey.asc
│       │       ├── lib
│       │       │   ├── byte_safe_strings.php
│       │       │   ├── cast_to_int.php
│       │       │   ├── error_polyfill.php
│       │       │   ├── random.php
│       │       │   ├── random_bytes_com_dotnet.php
│       │       │   ├── random_bytes_dev_urandom.php
│       │       │   ├── random_bytes_libsodium.php
│       │       │   ├── random_bytes_libsodium_legacy.php
│       │       │   ├── random_bytes_mcrypt.php
│       │       │   ├── random_bytes_openssl.php
│       │       │   └── random_int.php
│       │       ├── other
│       │       │   ├── build_phar.php
│       │       │   └── ide_stubs
│       │       │       ├── COM.php
│       │       │       ├── README.md
│       │       │       ├── com_exception.php
│       │       │       └── libsodium.php
│       │       ├── psalm-autoload.php
│       │       └── psalm.xml
│       ├── phpoffice
│       │   └── phpexcel
│       │       ├── Classes
│       │       │   ├── PHPExcel
│       │       │   │   ├── Autoloader.php
│       │       │   │   ├── CachedObjectStorage
│       │       │   │   │   ├── APC.php
│       │       │   │   │   ├── CacheBase.php
│       │       │   │   │   ├── DiscISAM.php
│       │       │   │   │   ├── ICache.php
│       │       │   │   │   ├── Igbinary.php
│       │       │   │   │   ├── Memcache.php
│       │       │   │   │   ├── Memory.php
│       │       │   │   │   ├── MemoryGZip.php
│       │       │   │   │   ├── MemorySerialized.php
│       │       │   │   │   ├── PHPTemp.php
│       │       │   │   │   ├── SQLite.php
│       │       │   │   │   ├── SQLite3.php
│       │       │   │   │   └── Wincache.php
│       │       │   │   ├── CachedObjectStorageFactory.php
│       │       │   │   ├── CalcEngine
│       │       │   │   │   ├── CyclicReferenceStack.php
│       │       │   │   │   └── Logger.php
│       │       │   │   ├── Calculation
│       │       │   │   │   ├── Database.php
│       │       │   │   │   ├── DateTime.php
│       │       │   │   │   ├── Engineering.php
│       │       │   │   │   ├── Exception.php
│       │       │   │   │   ├── ExceptionHandler.php
│       │       │   │   │   ├── Financial.php
│       │       │   │   │   ├── FormulaParser.php
│       │       │   │   │   ├── FormulaToken.php
│       │       │   │   │   ├── Function.php
│       │       │   │   │   ├── Functions.php
│       │       │   │   │   ├── Logical.php
│       │       │   │   │   ├── LookupRef.php
│       │       │   │   │   ├── MathTrig.php
│       │       │   │   │   ├── Statistical.php
│       │       │   │   │   ├── TextData.php
│       │       │   │   │   ├── Token
│       │       │   │   │   │   └── Stack.php
│       │       │   │   │   └── functionlist.txt
│       │       │   │   ├── Calculation.php
│       │       │   │   ├── Cell
│       │       │   │   │   ├── AdvancedValueBinder.php
│       │       │   │   │   ├── DataType.php
│       │       │   │   │   ├── DataValidation.php
│       │       │   │   │   ├── DefaultValueBinder.php
│       │       │   │   │   ├── Hyperlink.php
│       │       │   │   │   └── IValueBinder.php
│       │       │   │   ├── Cell.php
│       │       │   │   ├── Chart
│       │       │   │   │   ├── Axis.php
│       │       │   │   │   ├── DataSeries.php
│       │       │   │   │   ├── DataSeriesValues.php
│       │       │   │   │   ├── Exception.php
│       │       │   │   │   ├── GridLines.php
│       │       │   │   │   ├── Layout.php
│       │       │   │   │   ├── Legend.php
│       │       │   │   │   ├── PlotArea.php
│       │       │   │   │   ├── Properties.php
│       │       │   │   │   ├── Renderer
│       │       │   │   │   │   ├── PHP Charting Libraries.txt
│       │       │   │   │   │   └── jpgraph.php
│       │       │   │   │   └── Title.php
│       │       │   │   ├── Chart.php
│       │       │   │   ├── Comment.php
│       │       │   │   ├── DocumentProperties.php
│       │       │   │   ├── DocumentSecurity.php
│       │       │   │   ├── Exception.php
│       │       │   │   ├── HashTable.php
│       │       │   │   ├── Helper
│       │       │   │   │   └── HTML.php
│       │       │   │   ├── IComparable.php
│       │       │   │   ├── IOFactory.php
│       │       │   │   ├── NamedRange.php
│       │       │   │   ├── Reader
│       │       │   │   │   ├── Abstract.php
│       │       │   │   │   ├── CSV.php
│       │       │   │   │   ├── DefaultReadFilter.php
│       │       │   │   │   ├── Excel2003XML.php
│       │       │   │   │   ├── Excel2007
│       │       │   │   │   │   ├── Chart.php
│       │       │   │   │   │   └── Theme.php
│       │       │   │   │   ├── Excel2007.php
│       │       │   │   │   ├── Excel5
│       │       │   │   │   │   ├── Color
│       │       │   │   │   │   │   ├── BIFF5.php
│       │       │   │   │   │   │   ├── BIFF8.php
│       │       │   │   │   │   │   └── BuiltIn.php
│       │       │   │   │   │   ├── Color.php
│       │       │   │   │   │   ├── ErrorCode.php
│       │       │   │   │   │   ├── Escher.php
│       │       │   │   │   │   ├── MD5.php
│       │       │   │   │   │   ├── RC4.php
│       │       │   │   │   │   └── Style
│       │       │   │   │   │       ├── Border.php
│       │       │   │   │   │       └── FillPattern.php
│       │       │   │   │   ├── Excel5.php
│       │       │   │   │   ├── Exception.php
│       │       │   │   │   ├── Gnumeric.php
│       │       │   │   │   ├── HTML.php
│       │       │   │   │   ├── IReadFilter.php
│       │       │   │   │   ├── IReader.php
│       │       │   │   │   ├── OOCalc.php
│       │       │   │   │   └── SYLK.php
│       │       │   │   ├── ReferenceHelper.php
│       │       │   │   ├── RichText
│       │       │   │   │   ├── ITextElement.php
│       │       │   │   │   ├── Run.php
│       │       │   │   │   └── TextElement.php
│       │       │   │   ├── RichText.php
│       │       │   │   ├── Settings.php
│       │       │   │   ├── Shared
│       │       │   │   │   ├── CodePage.php
│       │       │   │   │   ├── Date.php
│       │       │   │   │   ├── Drawing.php
│       │       │   │   │   ├── Escher
│       │       │   │   │   │   ├── DgContainer
│       │       │   │   │   │   │   ├── SpgrContainer
│       │       │   │   │   │   │   │   └── SpContainer.php
│       │       │   │   │   │   │   └── SpgrContainer.php
│       │       │   │   │   │   ├── DgContainer.php
│       │       │   │   │   │   ├── DggContainer
│       │       │   │   │   │   │   ├── BstoreContainer
│       │       │   │   │   │   │   │   ├── BSE
│       │       │   │   │   │   │   │   │   └── Blip.php
│       │       │   │   │   │   │   │   └── BSE.php
│       │       │   │   │   │   │   └── BstoreContainer.php
│       │       │   │   │   │   └── DggContainer.php
│       │       │   │   │   ├── Escher.php
│       │       │   │   │   ├── Excel5.php
│       │       │   │   │   ├── File.php
│       │       │   │   │   ├── Font.php
│       │       │   │   │   ├── JAMA
│       │       │   │   │   │   ├── CHANGELOG.TXT
│       │       │   │   │   │   ├── CholeskyDecomposition.php
│       │       │   │   │   │   ├── EigenvalueDecomposition.php
│       │       │   │   │   │   ├── LUDecomposition.php
│       │       │   │   │   │   ├── Matrix.php
│       │       │   │   │   │   ├── QRDecomposition.php
│       │       │   │   │   │   ├── SingularValueDecomposition.php
│       │       │   │   │   │   └── utils
│       │       │   │   │   │       ├── Error.php
│       │       │   │   │   │       └── Maths.php
│       │       │   │   │   ├── OLE
│       │       │   │   │   │   ├── ChainedBlockStream.php
│       │       │   │   │   │   ├── PPS
│       │       │   │   │   │   │   ├── File.php
│       │       │   │   │   │   │   └── Root.php
│       │       │   │   │   │   └── PPS.php
│       │       │   │   │   ├── OLE.php
│       │       │   │   │   ├── OLERead.php
│       │       │   │   │   ├── PCLZip
│       │       │   │   │   │   ├── gnu-lgpl.txt
│       │       │   │   │   │   ├── pclzip.lib.php
│       │       │   │   │   │   └── readme.txt
│       │       │   │   │   ├── PasswordHasher.php
│       │       │   │   │   ├── String.php
│       │       │   │   │   ├── TimeZone.php
│       │       │   │   │   ├── XMLWriter.php
│       │       │   │   │   ├── ZipArchive.php
│       │       │   │   │   ├── ZipStreamWrapper.php
│       │       │   │   │   └── trend
│       │       │   │   │       ├── bestFitClass.php
│       │       │   │   │       ├── exponentialBestFitClass.php
│       │       │   │   │       ├── linearBestFitClass.php
│       │       │   │   │       ├── logarithmicBestFitClass.php
│       │       │   │   │       ├── polynomialBestFitClass.php
│       │       │   │   │       ├── powerBestFitClass.php
│       │       │   │   │       └── trendClass.php
│       │       │   │   ├── Style
│       │       │   │   │   ├── Alignment.php
│       │       │   │   │   ├── Border.php
│       │       │   │   │   ├── Borders.php
│       │       │   │   │   ├── Color.php
│       │       │   │   │   ├── Conditional.php
│       │       │   │   │   ├── Fill.php
│       │       │   │   │   ├── Font.php
│       │       │   │   │   ├── NumberFormat.php
│       │       │   │   │   ├── Protection.php
│       │       │   │   │   └── Supervisor.php
│       │       │   │   ├── Style.php
│       │       │   │   ├── Worksheet
│       │       │   │   │   ├── AutoFilter
│       │       │   │   │   │   ├── Column
│       │       │   │   │   │   │   └── Rule.php
│       │       │   │   │   │   └── Column.php
│       │       │   │   │   ├── AutoFilter.php
│       │       │   │   │   ├── BaseDrawing.php
│       │       │   │   │   ├── CellIterator.php
│       │       │   │   │   ├── Column.php
│       │       │   │   │   ├── ColumnCellIterator.php
│       │       │   │   │   ├── ColumnDimension.php
│       │       │   │   │   ├── ColumnIterator.php
│       │       │   │   │   ├── Dimension.php
│       │       │   │   │   ├── Drawing
│       │       │   │   │   │   └── Shadow.php
│       │       │   │   │   ├── Drawing.php
│       │       │   │   │   ├── HeaderFooter.php
│       │       │   │   │   ├── HeaderFooterDrawing.php
│       │       │   │   │   ├── MemoryDrawing.php
│       │       │   │   │   ├── PageMargins.php
│       │       │   │   │   ├── PageSetup.php
│       │       │   │   │   ├── Protection.php
│       │       │   │   │   ├── Row.php
│       │       │   │   │   ├── RowCellIterator.php
│       │       │   │   │   ├── RowDimension.php
│       │       │   │   │   ├── RowIterator.php
│       │       │   │   │   └── SheetView.php
│       │       │   │   ├── Worksheet.php
│       │       │   │   ├── WorksheetIterator.php
│       │       │   │   ├── Writer
│       │       │   │   │   ├── Abstract.php
│       │       │   │   │   ├── CSV.php
│       │       │   │   │   ├── Excel2007
│       │       │   │   │   │   ├── Chart.php
│       │       │   │   │   │   ├── Comments.php
│       │       │   │   │   │   ├── ContentTypes.php
│       │       │   │   │   │   ├── DocProps.php
│       │       │   │   │   │   ├── Drawing.php
│       │       │   │   │   │   ├── Rels.php
│       │       │   │   │   │   ├── RelsRibbon.php
│       │       │   │   │   │   ├── RelsVBA.php
│       │       │   │   │   │   ├── StringTable.php
│       │       │   │   │   │   ├── Style.php
│       │       │   │   │   │   ├── Theme.php
│       │       │   │   │   │   ├── Workbook.php
│       │       │   │   │   │   ├── Worksheet.php
│       │       │   │   │   │   └── WriterPart.php
│       │       │   │   │   ├── Excel2007.php
│       │       │   │   │   ├── Excel5
│       │       │   │   │   │   ├── BIFFwriter.php
│       │       │   │   │   │   ├── Escher.php
│       │       │   │   │   │   ├── Font.php
│       │       │   │   │   │   ├── Parser.php
│       │       │   │   │   │   ├── Workbook.php
│       │       │   │   │   │   ├── Worksheet.php
│       │       │   │   │   │   └── Xf.php
│       │       │   │   │   ├── Excel5.php
│       │       │   │   │   ├── Exception.php
│       │       │   │   │   ├── HTML.php
│       │       │   │   │   ├── IWriter.php
│       │       │   │   │   ├── OpenDocument
│       │       │   │   │   │   ├── Cell
│       │       │   │   │   │   │   └── Comment.php
│       │       │   │   │   │   ├── Content.php
│       │       │   │   │   │   ├── Meta.php
│       │       │   │   │   │   ├── MetaInf.php
│       │       │   │   │   │   ├── Mimetype.php
│       │       │   │   │   │   ├── Settings.php
│       │       │   │   │   │   ├── Styles.php
│       │       │   │   │   │   ├── Thumbnails.php
│       │       │   │   │   │   └── WriterPart.php
│       │       │   │   │   ├── OpenDocument.php
│       │       │   │   │   ├── PDF
│       │       │   │   │   │   ├── Core.php
│       │       │   │   │   │   ├── DomPDF.php
│       │       │   │   │   │   ├── mPDF.php
│       │       │   │   │   │   └── tcPDF.php
│       │       │   │   │   └── PDF.php
│       │       │   │   └── locale
│       │       │   │       ├── bg
│       │       │   │       │   └── config
│       │       │   │       ├── cs
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── da
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── de
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── en
│       │       │   │       │   └── uk
│       │       │   │       │       └── config
│       │       │   │       ├── es
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── fi
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── fr
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── hu
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── it
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── nl
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── no
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── pl
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── pt
│       │       │   │       │   ├── br
│       │       │   │       │   │   ├── config
│       │       │   │       │   │   └── functions
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── ru
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       ├── sv
│       │       │   │       │   ├── config
│       │       │   │       │   └── functions
│       │       │   │       └── tr
│       │       │   │           ├── config
│       │       │   │           └── functions
│       │       │   └── PHPExcel.php
│       │       ├── changelog.txt
│       │       ├── install.txt
│       │       └── license.md
│       ├── pimple
│       │   └── pimple
│       │       ├── CHANGELOG
│       │       ├── LICENSE
│       │       ├── README.rst
│       │       └── src
│       │           └── Pimple
│       │               ├── Container.php
│       │               ├── Exception
│       │               │   ├── ExpectedInvokableException.php
│       │               │   ├── FrozenServiceException.php
│       │               │   ├── InvalidServiceIdentifierException.php
│       │               │   └── UnknownIdentifierException.php
│       │               ├── Psr11
│       │               │   ├── Container.php
│       │               │   └── ServiceLocator.php
│       │               ├── ServiceIterator.php
│       │               └── ServiceProviderInterface.php
│       ├── predis
│       │   └── predis
│       │       ├── CHANGELOG.md
│       │       ├── CONTRIBUTING.md
│       │       ├── FAQ.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── VERSION
│       │       ├── autoload.php
│       │       ├── package.ini
│       │       └── src
│       │           ├── Autoloader.php
│       │           ├── Client.php
│       │           ├── ClientContextInterface.php
│       │           ├── ClientException.php
│       │           ├── ClientInterface.php
│       │           ├── Cluster
│       │           │   ├── ClusterStrategy.php
│       │           │   ├── Distributor
│       │           │   │   ├── DistributorInterface.php
│       │           │   │   ├── EmptyRingException.php
│       │           │   │   ├── HashRing.php
│       │           │   │   └── KetamaRing.php
│       │           │   ├── Hash
│       │           │   │   ├── CRC16.php
│       │           │   │   └── HashGeneratorInterface.php
│       │           │   ├── PredisStrategy.php
│       │           │   ├── RedisStrategy.php
│       │           │   └── StrategyInterface.php
│       │           ├── Collection
│       │           │   └── Iterator
│       │           │       ├── CursorBasedIterator.php
│       │           │       ├── HashKey.php
│       │           │       ├── Keyspace.php
│       │           │       ├── ListKey.php
│       │           │       ├── SetKey.php
│       │           │       └── SortedSetKey.php
│       │           ├── Command
│       │           │   ├── Command.php
│       │           │   ├── CommandInterface.php
│       │           │   ├── ConnectionAuth.php
│       │           │   ├── ConnectionEcho.php
│       │           │   ├── ConnectionPing.php
│       │           │   ├── ConnectionQuit.php
│       │           │   ├── ConnectionSelect.php
│       │           │   ├── GeospatialGeoAdd.php
│       │           │   ├── GeospatialGeoDist.php
│       │           │   ├── GeospatialGeoHash.php
│       │           │   ├── GeospatialGeoPos.php
│       │           │   ├── GeospatialGeoRadius.php
│       │           │   ├── GeospatialGeoRadiusByMember.php
│       │           │   ├── HashDelete.php
│       │           │   ├── HashExists.php
│       │           │   ├── HashGet.php
│       │           │   ├── HashGetAll.php
│       │           │   ├── HashGetMultiple.php
│       │           │   ├── HashIncrementBy.php
│       │           │   ├── HashIncrementByFloat.php
│       │           │   ├── HashKeys.php
│       │           │   ├── HashLength.php
│       │           │   ├── HashScan.php
│       │           │   ├── HashSet.php
│       │           │   ├── HashSetMultiple.php
│       │           │   ├── HashSetPreserve.php
│       │           │   ├── HashStringLength.php
│       │           │   ├── HashValues.php
│       │           │   ├── HyperLogLogAdd.php
│       │           │   ├── HyperLogLogCount.php
│       │           │   ├── HyperLogLogMerge.php
│       │           │   ├── KeyDelete.php
│       │           │   ├── KeyDump.php
│       │           │   ├── KeyExists.php
│       │           │   ├── KeyExpire.php
│       │           │   ├── KeyExpireAt.php
│       │           │   ├── KeyKeys.php
│       │           │   ├── KeyMigrate.php
│       │           │   ├── KeyMove.php
│       │           │   ├── KeyPersist.php
│       │           │   ├── KeyPreciseExpire.php
│       │           │   ├── KeyPreciseExpireAt.php
│       │           │   ├── KeyPreciseTimeToLive.php
│       │           │   ├── KeyRandom.php
│       │           │   ├── KeyRename.php
│       │           │   ├── KeyRenamePreserve.php
│       │           │   ├── KeyRestore.php
│       │           │   ├── KeyScan.php
│       │           │   ├── KeySort.php
│       │           │   ├── KeyTimeToLive.php
│       │           │   ├── KeyType.php
│       │           │   ├── ListIndex.php
│       │           │   ├── ListInsert.php
│       │           │   ├── ListLength.php
│       │           │   ├── ListPopFirst.php
│       │           │   ├── ListPopFirstBlocking.php
│       │           │   ├── ListPopLast.php
│       │           │   ├── ListPopLastBlocking.php
│       │           │   ├── ListPopLastPushHead.php
│       │           │   ├── ListPopLastPushHeadBlocking.php
│       │           │   ├── ListPushHead.php
│       │           │   ├── ListPushHeadX.php
│       │           │   ├── ListPushTail.php
│       │           │   ├── ListPushTailX.php
│       │           │   ├── ListRange.php
│       │           │   ├── ListRemove.php
│       │           │   ├── ListSet.php
│       │           │   ├── ListTrim.php
│       │           │   ├── PrefixableCommandInterface.php
│       │           │   ├── Processor
│       │           │   │   ├── KeyPrefixProcessor.php
│       │           │   │   ├── ProcessorChain.php
│       │           │   │   └── ProcessorInterface.php
│       │           │   ├── PubSubPublish.php
│       │           │   ├── PubSubPubsub.php
│       │           │   ├── PubSubSubscribe.php
│       │           │   ├── PubSubSubscribeByPattern.php
│       │           │   ├── PubSubUnsubscribe.php
│       │           │   ├── PubSubUnsubscribeByPattern.php
│       │           │   ├── RawCommand.php
│       │           │   ├── ScriptCommand.php
│       │           │   ├── ServerBackgroundRewriteAOF.php
│       │           │   ├── ServerBackgroundSave.php
│       │           │   ├── ServerClient.php
│       │           │   ├── ServerCommand.php
│       │           │   ├── ServerConfig.php
│       │           │   ├── ServerDatabaseSize.php
│       │           │   ├── ServerEval.php
│       │           │   ├── ServerEvalSHA.php
│       │           │   ├── ServerFlushAll.php
│       │           │   ├── ServerFlushDatabase.php
│       │           │   ├── ServerInfo.php
│       │           │   ├── ServerInfoV26x.php
│       │           │   ├── ServerLastSave.php
│       │           │   ├── ServerMonitor.php
│       │           │   ├── ServerObject.php
│       │           │   ├── ServerSave.php
│       │           │   ├── ServerScript.php
│       │           │   ├── ServerSentinel.php
│       │           │   ├── ServerShutdown.php
│       │           │   ├── ServerSlaveOf.php
│       │           │   ├── ServerSlowlog.php
│       │           │   ├── ServerTime.php
│       │           │   ├── SetAdd.php
│       │           │   ├── SetCardinality.php
│       │           │   ├── SetDifference.php
│       │           │   ├── SetDifferenceStore.php
│       │           │   ├── SetIntersection.php
│       │           │   ├── SetIntersectionStore.php
│       │           │   ├── SetIsMember.php
│       │           │   ├── SetMembers.php
│       │           │   ├── SetMove.php
│       │           │   ├── SetPop.php
│       │           │   ├── SetRandomMember.php
│       │           │   ├── SetRemove.php
│       │           │   ├── SetScan.php
│       │           │   ├── SetUnion.php
│       │           │   ├── SetUnionStore.php
│       │           │   ├── StringAppend.php
│       │           │   ├── StringBitCount.php
│       │           │   ├── StringBitField.php
│       │           │   ├── StringBitOp.php
│       │           │   ├── StringBitPos.php
│       │           │   ├── StringDecrement.php
│       │           │   ├── StringDecrementBy.php
│       │           │   ├── StringGet.php
│       │           │   ├── StringGetBit.php
│       │           │   ├── StringGetMultiple.php
│       │           │   ├── StringGetRange.php
│       │           │   ├── StringGetSet.php
│       │           │   ├── StringIncrement.php
│       │           │   ├── StringIncrementBy.php
│       │           │   ├── StringIncrementByFloat.php
│       │           │   ├── StringPreciseSetExpire.php
│       │           │   ├── StringSet.php
│       │           │   ├── StringSetBit.php
│       │           │   ├── StringSetExpire.php
│       │           │   ├── StringSetMultiple.php
│       │           │   ├── StringSetMultiplePreserve.php
│       │           │   ├── StringSetPreserve.php
│       │           │   ├── StringSetRange.php
│       │           │   ├── StringStrlen.php
│       │           │   ├── StringSubstr.php
│       │           │   ├── TransactionDiscard.php
│       │           │   ├── TransactionExec.php
│       │           │   ├── TransactionMulti.php
│       │           │   ├── TransactionUnwatch.php
│       │           │   ├── TransactionWatch.php
│       │           │   ├── ZSetAdd.php
│       │           │   ├── ZSetCardinality.php
│       │           │   ├── ZSetCount.php
│       │           │   ├── ZSetIncrementBy.php
│       │           │   ├── ZSetIntersectionStore.php
│       │           │   ├── ZSetLexCount.php
│       │           │   ├── ZSetRange.php
│       │           │   ├── ZSetRangeByLex.php
│       │           │   ├── ZSetRangeByScore.php
│       │           │   ├── ZSetRank.php
│       │           │   ├── ZSetRemove.php
│       │           │   ├── ZSetRemoveRangeByLex.php
│       │           │   ├── ZSetRemoveRangeByRank.php
│       │           │   ├── ZSetRemoveRangeByScore.php
│       │           │   ├── ZSetReverseRange.php
│       │           │   ├── ZSetReverseRangeByLex.php
│       │           │   ├── ZSetReverseRangeByScore.php
│       │           │   ├── ZSetReverseRank.php
│       │           │   ├── ZSetScan.php
│       │           │   ├── ZSetScore.php
│       │           │   └── ZSetUnionStore.php
│       │           ├── CommunicationException.php
│       │           ├── Configuration
│       │           │   ├── ClusterOption.php
│       │           │   ├── ConnectionFactoryOption.php
│       │           │   ├── ExceptionsOption.php
│       │           │   ├── OptionInterface.php
│       │           │   ├── Options.php
│       │           │   ├── OptionsInterface.php
│       │           │   ├── PrefixOption.php
│       │           │   ├── ProfileOption.php
│       │           │   └── ReplicationOption.php
│       │           ├── Connection
│       │           │   ├── AbstractConnection.php
│       │           │   ├── Aggregate
│       │           │   │   ├── ClusterInterface.php
│       │           │   │   ├── MasterSlaveReplication.php
│       │           │   │   ├── PredisCluster.php
│       │           │   │   ├── RedisCluster.php
│       │           │   │   ├── ReplicationInterface.php
│       │           │   │   └── SentinelReplication.php
│       │           │   ├── AggregateConnectionInterface.php
│       │           │   ├── CompositeConnectionInterface.php
│       │           │   ├── CompositeStreamConnection.php
│       │           │   ├── ConnectionException.php
│       │           │   ├── ConnectionInterface.php
│       │           │   ├── Factory.php
│       │           │   ├── FactoryInterface.php
│       │           │   ├── NodeConnectionInterface.php
│       │           │   ├── Parameters.php
│       │           │   ├── ParametersInterface.php
│       │           │   ├── PhpiredisSocketConnection.php
│       │           │   ├── PhpiredisStreamConnection.php
│       │           │   ├── StreamConnection.php
│       │           │   └── WebdisConnection.php
│       │           ├── Monitor
│       │           │   └── Consumer.php
│       │           ├── NotSupportedException.php
│       │           ├── Pipeline
│       │           │   ├── Atomic.php
│       │           │   ├── ConnectionErrorProof.php
│       │           │   ├── FireAndForget.php
│       │           │   └── Pipeline.php
│       │           ├── PredisException.php
│       │           ├── Profile
│       │           │   ├── Factory.php
│       │           │   ├── ProfileInterface.php
│       │           │   ├── RedisProfile.php
│       │           │   ├── RedisUnstable.php
│       │           │   ├── RedisVersion200.php
│       │           │   ├── RedisVersion220.php
│       │           │   ├── RedisVersion240.php
│       │           │   ├── RedisVersion260.php
│       │           │   ├── RedisVersion280.php
│       │           │   ├── RedisVersion300.php
│       │           │   └── RedisVersion320.php
│       │           ├── Protocol
│       │           │   ├── ProtocolException.php
│       │           │   ├── ProtocolProcessorInterface.php
│       │           │   ├── RequestSerializerInterface.php
│       │           │   ├── ResponseReaderInterface.php
│       │           │   └── Text
│       │           │       ├── CompositeProtocolProcessor.php
│       │           │       ├── Handler
│       │           │       │   ├── BulkResponse.php
│       │           │       │   ├── ErrorResponse.php
│       │           │       │   ├── IntegerResponse.php
│       │           │       │   ├── MultiBulkResponse.php
│       │           │       │   ├── ResponseHandlerInterface.php
│       │           │       │   ├── StatusResponse.php
│       │           │       │   └── StreamableMultiBulkResponse.php
│       │           │       ├── ProtocolProcessor.php
│       │           │       ├── RequestSerializer.php
│       │           │       └── ResponseReader.php
│       │           ├── PubSub
│       │           │   ├── AbstractConsumer.php
│       │           │   ├── Consumer.php
│       │           │   └── DispatcherLoop.php
│       │           ├── Replication
│       │           │   ├── MissingMasterException.php
│       │           │   ├── ReplicationStrategy.php
│       │           │   └── RoleException.php
│       │           ├── Response
│       │           │   ├── Error.php
│       │           │   ├── ErrorInterface.php
│       │           │   ├── Iterator
│       │           │   │   ├── MultiBulk.php
│       │           │   │   ├── MultiBulkIterator.php
│       │           │   │   └── MultiBulkTuple.php
│       │           │   ├── ResponseInterface.php
│       │           │   ├── ServerException.php
│       │           │   └── Status.php
│       │           ├── Session
│       │           │   └── Handler.php
│       │           └── Transaction
│       │               ├── AbortedMultiExecException.php
│       │               ├── MultiExec.php
│       │               └── MultiExecState.php
│       ├── psr
│       │   ├── container
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── src
│       │   │       ├── ContainerExceptionInterface.php
│       │   │       ├── ContainerInterface.php
│       │   │       └── NotFoundExceptionInterface.php
│       │   ├── http-message
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── src
│       │   │       ├── MessageInterface.php
│       │   │       ├── RequestInterface.php
│       │   │       ├── ResponseInterface.php
│       │   │       ├── ServerRequestInterface.php
│       │   │       ├── StreamInterface.php
│       │   │       ├── UploadedFileInterface.php
│       │   │       └── UriInterface.php
│       │   ├── log
│       │   │   ├── LICENSE
│       │   │   ├── Psr
│       │   │   │   └── Log
│       │   │   │       ├── AbstractLogger.php
│       │   │   │       ├── InvalidArgumentException.php
│       │   │   │       ├── LogLevel.php
│       │   │   │       ├── LoggerAwareInterface.php
│       │   │   │       ├── LoggerAwareTrait.php
│       │   │   │       ├── LoggerInterface.php
│       │   │   │       ├── LoggerTrait.php
│       │   │   │       ├── NullLogger.php
│       │   │   │       └── Test
│       │   │   │           ├── DummyTest.php
│       │   │   │           ├── LoggerInterfaceTest.php
│       │   │   │           └── TestLogger.php
│       │   │   └── README.md
│       │   └── simple-cache
│       │       ├── LICENSE.md
│       │       ├── README.md
│       │       └── src
│       │           ├── CacheException.php
│       │           ├── CacheInterface.php
│       │           └── InvalidArgumentException.php
│       ├── psy
│       │   └── psysh
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── phpcs.xml
│       │       └── src
│       │           └── Psy
│       │               ├── Autoloader.php
│       │               ├── CodeCleaner
│       │               │   ├── AbstractClassPass.php
│       │               │   ├── AssignThisVariablePass.php
│       │               │   ├── CallTimePassByReferencePass.php
│       │               │   ├── CalledClassPass.php
│       │               │   ├── CodeCleanerPass.php
│       │               │   ├── ExitPass.php
│       │               │   ├── FunctionReturnInWriteContextPass.php
│       │               │   ├── ImplicitReturnPass.php
│       │               │   ├── InstanceOfPass.php
│       │               │   ├── LeavePsyshAlonePass.php
│       │               │   ├── LegacyEmptyPass.php
│       │               │   ├── MagicConstantsPass.php
│       │               │   ├── NamespaceAwarePass.php
│       │               │   ├── NamespacePass.php
│       │               │   ├── StaticConstructorPass.php
│       │               │   ├── StrictTypesPass.php
│       │               │   ├── UseStatementPass.php
│       │               │   ├── ValidClassNamePass.php
│       │               │   ├── ValidConstantPass.php
│       │               │   └── ValidFunctionNamePass.php
│       │               ├── CodeCleaner.php
│       │               ├── Command
│       │               │   ├── BufferCommand.php
│       │               │   ├── ClearCommand.php
│       │               │   ├── Command.php
│       │               │   ├── DocCommand.php
│       │               │   ├── DumpCommand.php
│       │               │   ├── ExitCommand.php
│       │               │   ├── HelpCommand.php
│       │               │   ├── HistoryCommand.php
│       │               │   ├── ListCommand
│       │               │   │   ├── ClassConstantEnumerator.php
│       │               │   │   ├── ClassEnumerator.php
│       │               │   │   ├── ConstantEnumerator.php
│       │               │   │   ├── Enumerator.php
│       │               │   │   ├── FunctionEnumerator.php
│       │               │   │   ├── GlobalVariableEnumerator.php
│       │               │   │   ├── InterfaceEnumerator.php
│       │               │   │   ├── MethodEnumerator.php
│       │               │   │   ├── PropertyEnumerator.php
│       │               │   │   ├── TraitEnumerator.php
│       │               │   │   └── VariableEnumerator.php
│       │               │   ├── ListCommand.php
│       │               │   ├── ParseCommand.php
│       │               │   ├── PsyVersionCommand.php
│       │               │   ├── ReflectingCommand.php
│       │               │   ├── ShowCommand.php
│       │               │   ├── ThrowUpCommand.php
│       │               │   ├── TraceCommand.php
│       │               │   ├── WhereamiCommand.php
│       │               │   └── WtfCommand.php
│       │               ├── Compiler.php
│       │               ├── ConfigPaths.php
│       │               ├── Configuration.php
│       │               ├── ConsoleColorFactory.php
│       │               ├── Context.php
│       │               ├── ContextAware.php
│       │               ├── Exception
│       │               │   ├── BreakException.php
│       │               │   ├── DeprecatedException.php
│       │               │   ├── ErrorException.php
│       │               │   ├── Exception.php
│       │               │   ├── FatalErrorException.php
│       │               │   ├── ParseErrorException.php
│       │               │   ├── RuntimeException.php
│       │               │   ├── ThrowUpException.php
│       │               │   └── TypeErrorException.php
│       │               ├── ExecutionLoop
│       │               │   ├── ForkingLoop.php
│       │               │   └── Loop.php
│       │               ├── Formatter
│       │               │   ├── CodeFormatter.php
│       │               │   ├── DocblockFormatter.php
│       │               │   ├── Formatter.php
│       │               │   └── SignatureFormatter.php
│       │               ├── Output
│       │               │   ├── OutputPager.php
│       │               │   ├── PassthruPager.php
│       │               │   ├── ProcOutputPager.php
│       │               │   └── ShellOutput.php
│       │               ├── ParserFactory.php
│       │               ├── Readline
│       │               │   ├── GNUReadline.php
│       │               │   ├── Libedit.php
│       │               │   ├── Readline.php
│       │               │   └── Transient.php
│       │               ├── Reflection
│       │               │   └── ReflectionConstant.php
│       │               ├── Shell.php
│       │               ├── TabCompletion
│       │               │   ├── AutoCompleter.php
│       │               │   └── Matcher
│       │               │       ├── AbstractContextAwareMatcher.php
│       │               │       ├── AbstractMatcher.php
│       │               │       ├── ClassAttributesMatcher.php
│       │               │       ├── ClassMethodsMatcher.php
│       │               │       ├── ClassNamesMatcher.php
│       │               │       ├── CommandsMatcher.php
│       │               │       ├── ConstantsMatcher.php
│       │               │       ├── FunctionsMatcher.php
│       │               │       ├── KeywordsMatcher.php
│       │               │       ├── MongoClientMatcher.php
│       │               │       ├── MongoDatabaseMatcher.php
│       │               │       ├── ObjectAttributesMatcher.php
│       │               │       ├── ObjectMethodsMatcher.php
│       │               │       └── VariablesMatcher.php
│       │               ├── Util
│       │               │   ├── Docblock.php
│       │               │   ├── Json.php
│       │               │   ├── Mirror.php
│       │               │   └── Str.php
│       │               ├── VarDumper
│       │               │   ├── Cloner.php
│       │               │   ├── Dumper.php
│       │               │   ├── Presenter.php
│       │               │   └── PresenterAware.php
│       │               └── functions.php
│       ├── ralouphie
│       │   └── getallheaders
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           └── getallheaders.php
│       ├── react
│       │   └── promise
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       └── src
│       │           ├── CancellablePromiseInterface.php
│       │           ├── CancellationQueue.php
│       │           ├── Deferred.php
│       │           ├── Exception
│       │           │   └── LengthException.php
│       │           ├── ExtendedPromiseInterface.php
│       │           ├── FulfilledPromise.php
│       │           ├── LazyPromise.php
│       │           ├── Promise.php
│       │           ├── PromiseInterface.php
│       │           ├── PromisorInterface.php
│       │           ├── RejectedPromise.php
│       │           ├── UnhandledRejectionException.php
│       │           ├── functions.php
│       │           └── functions_include.php
│       ├── swiftmailer
│       │   └── swiftmailer
│       │       ├── CHANGES
│       │       ├── LICENSE
│       │       ├── README
│       │       ├── VERSION
│       │       └── lib
│       │           ├── classes
│       │           │   ├── Swift
│       │           │   │   ├── Attachment.php
│       │           │   │   ├── ByteStream
│       │           │   │   │   ├── AbstractFilterableInputStream.php
│       │           │   │   │   ├── ArrayByteStream.php
│       │           │   │   │   ├── FileByteStream.php
│       │           │   │   │   └── TemporaryFileByteStream.php
│       │           │   │   ├── CharacterReader
│       │           │   │   │   ├── GenericFixedWidthReader.php
│       │           │   │   │   ├── UsAsciiReader.php
│       │           │   │   │   └── Utf8Reader.php
│       │           │   │   ├── CharacterReader.php
│       │           │   │   ├── CharacterReaderFactory
│       │           │   │   │   └── SimpleCharacterReaderFactory.php
│       │           │   │   ├── CharacterReaderFactory.php
│       │           │   │   ├── CharacterStream
│       │           │   │   │   ├── ArrayCharacterStream.php
│       │           │   │   │   └── NgCharacterStream.php
│       │           │   │   ├── CharacterStream.php
│       │           │   │   ├── ConfigurableSpool.php
│       │           │   │   ├── DependencyContainer.php
│       │           │   │   ├── DependencyException.php
│       │           │   │   ├── EmbeddedFile.php
│       │           │   │   ├── Encoder
│       │           │   │   │   ├── Base64Encoder.php
│       │           │   │   │   ├── QpEncoder.php
│       │           │   │   │   └── Rfc2231Encoder.php
│       │           │   │   ├── Encoder.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
│       │           │   │   │   ├── ArrayKeyCache.php
│       │           │   │   │   ├── DiskKeyCache.php
│       │           │   │   │   ├── KeyCacheInputStream.php
│       │           │   │   │   ├── NullKeyCache.php
│       │           │   │   │   └── SimpleKeyCacheInputStream.php
│       │           │   │   ├── KeyCache.php
│       │           │   │   ├── LoadBalancedTransport.php
│       │           │   │   ├── MailTransport.php
│       │           │   │   ├── Mailer
│       │           │   │   │   ├── ArrayRecipientIterator.php
│       │           │   │   │   └── RecipientIterator.php
│       │           │   │   ├── Mailer.php
│       │           │   │   ├── MemorySpool.php
│       │           │   │   ├── Message.php
│       │           │   │   ├── Mime
│       │           │   │   │   ├── Attachment.php
│       │           │   │   │   ├── CharsetObserver.php
│       │           │   │   │   ├── ContentEncoder
│       │           │   │   │   │   ├── Base64ContentEncoder.php
│       │           │   │   │   │   ├── NativeQpContentEncoder.php
│       │           │   │   │   │   ├── PlainContentEncoder.php
│       │           │   │   │   │   ├── QpContentEncoder.php
│       │           │   │   │   │   ├── QpContentEncoderProxy.php
│       │           │   │   │   │   └── RawContentEncoder.php
│       │           │   │   │   ├── ContentEncoder.php
│       │           │   │   │   ├── EmbeddedFile.php
│       │           │   │   │   ├── EncodingObserver.php
│       │           │   │   │   ├── Grammar.php
│       │           │   │   │   ├── Header.php
│       │           │   │   │   ├── HeaderEncoder
│       │           │   │   │   │   ├── Base64HeaderEncoder.php
│       │           │   │   │   │   └── QpHeaderEncoder.php
│       │           │   │   │   ├── HeaderEncoder.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
│       │           │   │   │   ├── 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
│       │           │   │   ├── Transport.php
│       │           │   │   ├── TransportException.php
│       │           │   │   └── Validate.php
│       │           │   └── Swift.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
│       ├── symfony
│       │   ├── 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
│       │   │   ├── Exception
│       │   │   │   └── RuntimeException.php
│       │   │   ├── Formatter
│       │   │   │   ├── OutputFormatter.php
│       │   │   │   ├── OutputFormatterInterface.php
│       │   │   │   ├── OutputFormatterStyle.php
│       │   │   │   ├── OutputFormatterStyleInterface.php
│       │   │   │   └── OutputFormatterStyleStack.php
│       │   │   ├── Helper
│       │   │   │   ├── DebugFormatterHelper.php
│       │   │   │   ├── DescriptorHelper.php
│       │   │   │   ├── DialogHelper.php
│       │   │   │   ├── FormatterHelper.php
│       │   │   │   ├── Helper.php
│       │   │   │   ├── HelperInterface.php
│       │   │   │   ├── HelperSet.php
│       │   │   │   ├── InputAwareHelper.php
│       │   │   │   ├── ProcessHelper.php
│       │   │   │   ├── ProgressBar.php
│       │   │   │   ├── ProgressHelper.php
│       │   │   │   ├── QuestionHelper.php
│       │   │   │   ├── SymfonyQuestionHelper.php
│       │   │   │   ├── Table.php
│       │   │   │   ├── TableCell.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
│       │   │   ├── Style
│       │   │   │   ├── OutputStyle.php
│       │   │   │   ├── StyleInterface.php
│       │   │   │   └── SymfonyStyle.php
│       │   │   └── Tester
│       │   │       ├── ApplicationTester.php
│       │   │       └── CommandTester.php
│       │   ├── css-selector
│       │   │   ├── CHANGELOG.md
│       │   │   ├── CssSelector.php
│       │   │   ├── CssSelectorConverter.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
│       │   │   └── XPath
│       │   │       ├── Extension
│       │   │       │   ├── AbstractExtension.php
│       │   │       │   ├── AttributeMatchingExtension.php
│       │   │       │   ├── CombinationExtension.php
│       │   │       │   ├── ExtensionInterface.php
│       │   │       │   ├── FunctionExtension.php
│       │   │       │   ├── HtmlExtension.php
│       │   │       │   ├── NodeExtension.php
│       │   │       │   └── PseudoClassExtension.php
│       │   │       ├── Translator.php
│       │   │       ├── TranslatorInterface.php
│       │   │       └── XPathExpr.php
│       │   ├── debug
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Debug.php
│       │   │   ├── DebugClassLoader.php
│       │   │   ├── ErrorHandler.php
│       │   │   ├── Exception
│       │   │   │   ├── ClassNotFoundException.php
│       │   │   │   ├── ContextErrorException.php
│       │   │   │   ├── DummyException.php
│       │   │   │   ├── FatalErrorException.php
│       │   │   │   ├── FatalThrowableError.php
│       │   │   │   ├── FlattenException.php
│       │   │   │   ├── OutOfMemoryException.php
│       │   │   │   ├── UndefinedFunctionException.php
│       │   │   │   └── UndefinedMethodException.php
│       │   │   ├── ExceptionHandler.php
│       │   │   ├── FatalErrorHandler
│       │   │   │   ├── ClassNotFoundFatalErrorHandler.php
│       │   │   │   ├── FatalErrorHandlerInterface.php
│       │   │   │   ├── UndefinedFunctionFatalErrorHandler.php
│       │   │   │   └── UndefinedMethodFatalErrorHandler.php
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── Resources
│       │   │       └── ext
│       │   │           ├── README.md
│       │   │           ├── config.m4
│       │   │           ├── config.w32
│       │   │           ├── php_symfony_debug.h
│       │   │           └── symfony_debug.c
│       │   ├── dom-crawler
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Crawler.php
│       │   │   ├── Field
│       │   │   │   ├── ChoiceFormField.php
│       │   │   │   ├── FileFormField.php
│       │   │   │   ├── FormField.php
│       │   │   │   ├── InputFormField.php
│       │   │   │   └── TextareaFormField.php
│       │   │   ├── Form.php
│       │   │   ├── FormFieldRegistry.php
│       │   │   ├── LICENSE
│       │   │   ├── Link.php
│       │   │   └── README.md
│       │   ├── event-dispatcher
│       │   │   ├── 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
│       │   ├── 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
│       │   ├── http-foundation
│       │   │   ├── AcceptHeader.php
│       │   │   ├── AcceptHeaderItem.php
│       │   │   ├── ApacheRequest.php
│       │   │   ├── BinaryFileResponse.php
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Cookie.php
│       │   │   ├── Exception
│       │   │   │   └── ConflictingHeadersException.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
│       │   │   │       │   ├── LegacyPdoSessionHandler.php
│       │   │   │       │   ├── 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
│       │   ├── http-kernel
│       │   │   ├── Bundle
│       │   │   │   ├── Bundle.php
│       │   │   │   └── BundleInterface.php
│       │   │   ├── CHANGELOG.md
│       │   │   ├── CacheClearer
│       │   │   │   ├── CacheClearerInterface.php
│       │   │   │   └── ChainCacheClearer.php
│       │   │   ├── CacheWarmer
│       │   │   │   ├── CacheWarmer.php
│       │   │   │   ├── CacheWarmerAggregate.php
│       │   │   │   ├── CacheWarmerInterface.php
│       │   │   │   └── WarmableInterface.php
│       │   │   ├── Client.php
│       │   │   ├── Config
│       │   │   │   ├── EnvParametersResource.php
│       │   │   │   └── FileLocator.php
│       │   │   ├── Controller
│       │   │   │   ├── ControllerReference.php
│       │   │   │   ├── ControllerResolver.php
│       │   │   │   ├── ControllerResolverInterface.php
│       │   │   │   └── TraceableControllerResolver.php
│       │   │   ├── DataCollector
│       │   │   │   ├── ConfigDataCollector.php
│       │   │   │   ├── DataCollector.php
│       │   │   │   ├── DataCollectorInterface.php
│       │   │   │   ├── DumpDataCollector.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
│       │   │   │   ├── FragmentRendererPass.php
│       │   │   │   ├── LazyLoadingFragmentHandler.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
│       │   │   │   ├── DumpListener.php
│       │   │   │   ├── ErrorsLoggerListener.php
│       │   │   │   ├── EsiListener.php
│       │   │   │   ├── ExceptionListener.php
│       │   │   │   ├── FragmentListener.php
│       │   │   │   ├── LocaleListener.php
│       │   │   │   ├── ProfilerListener.php
│       │   │   │   ├── ResponseListener.php
│       │   │   │   ├── RouterListener.php
│       │   │   │   ├── SaveSessionListener.php
│       │   │   │   ├── SessionListener.php
│       │   │   │   ├── StreamedResponseListener.php
│       │   │   │   ├── SurrogateListener.php
│       │   │   │   ├── TestSessionListener.php
│       │   │   │   ├── TranslatorListener.php
│       │   │   │   └── ValidateRequestListener.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
│       │   │   │   ├── AbstractSurrogateFragmentRenderer.php
│       │   │   │   ├── EsiFragmentRenderer.php
│       │   │   │   ├── FragmentHandler.php
│       │   │   │   ├── FragmentRendererInterface.php
│       │   │   │   ├── HIncludeFragmentRenderer.php
│       │   │   │   ├── InlineFragmentRenderer.php
│       │   │   │   ├── RoutableFragmentRenderer.php
│       │   │   │   └── SsiFragmentRenderer.php
│       │   │   ├── HttpCache
│       │   │   │   ├── Esi.php
│       │   │   │   ├── EsiResponseCacheStrategy.php
│       │   │   │   ├── EsiResponseCacheStrategyInterface.php
│       │   │   │   ├── HttpCache.php
│       │   │   │   ├── ResponseCacheStrategy.php
│       │   │   │   ├── ResponseCacheStrategyInterface.php
│       │   │   │   ├── Ssi.php
│       │   │   │   ├── Store.php
│       │   │   │   ├── StoreInterface.php
│       │   │   │   ├── SubRequestHandler.php
│       │   │   │   └── SurrogateInterface.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
│       │   │   └── UriSigner.php
│       │   ├── polyfill-ctype
│       │   │   ├── Ctype.php
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   └── bootstrap.php
│       │   ├── polyfill-intl-idn
│       │   │   ├── Idn.php
│       │   │   ├── Info.php
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── Resources
│       │   │   │   └── unidata
│       │   │   │       ├── DisallowedRanges.php
│       │   │   │       ├── Regex.php
│       │   │   │       ├── deviation.php
│       │   │   │       ├── disallowed.php
│       │   │   │       ├── disallowed_STD3_mapped.php
│       │   │   │       ├── disallowed_STD3_valid.php
│       │   │   │       ├── ignored.php
│       │   │   │       ├── mapped.php
│       │   │   │       └── virama.php
│       │   │   └── bootstrap.php
│       │   ├── polyfill-intl-normalizer
│       │   │   ├── LICENSE
│       │   │   ├── Normalizer.php
│       │   │   ├── README.md
│       │   │   ├── Resources
│       │   │   │   ├── stubs
│       │   │   │   │   └── Normalizer.php
│       │   │   │   └── unidata
│       │   │   │       ├── canonicalComposition.php
│       │   │   │       ├── canonicalDecomposition.php
│       │   │   │       ├── combiningClass.php
│       │   │   │       └── compatibilityDecomposition.php
│       │   │   └── bootstrap.php
│       │   ├── polyfill-mbstring
│       │   │   ├── LICENSE
│       │   │   ├── Mbstring.php
│       │   │   ├── README.md
│       │   │   ├── Resources
│       │   │   │   ├── mb_convert_variables.php8
│       │   │   │   └── unidata
│       │   │   │       ├── lowerCase.php
│       │   │   │       ├── titleCaseRegexp.php
│       │   │   │       └── upperCase.php
│       │   │   └── bootstrap.php
│       │   ├── polyfill-php56
│       │   │   ├── LICENSE
│       │   │   ├── Php56.php
│       │   │   ├── README.md
│       │   │   └── bootstrap.php
│       │   ├── polyfill-php70
│       │   │   ├── LICENSE
│       │   │   ├── Php70.php
│       │   │   ├── README.md
│       │   │   ├── Resources
│       │   │   │   └── stubs
│       │   │   │       ├── ArithmeticError.php
│       │   │   │       ├── AssertionError.php
│       │   │   │       ├── DivisionByZeroError.php
│       │   │   │       ├── Error.php
│       │   │   │       ├── ParseError.php
│       │   │   │       ├── SessionUpdateTimestampHandlerInterface.php
│       │   │   │       └── TypeError.php
│       │   │   └── bootstrap.php
│       │   ├── polyfill-php72
│       │   │   ├── LICENSE
│       │   │   ├── Php72.php
│       │   │   ├── README.md
│       │   │   └── bootstrap.php
│       │   ├── polyfill-util
│       │   │   ├── Binary.php
│       │   │   ├── BinaryNoFuncOverload.php
│       │   │   ├── BinaryOnFuncOverload.php
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── TestListener.php
│       │   │   ├── TestListenerForV5.php
│       │   │   ├── TestListenerForV6.php
│       │   │   ├── TestListenerForV7.php
│       │   │   └── TestListenerTrait.php
│       │   ├── process
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Exception
│       │   │   │   ├── ExceptionInterface.php
│       │   │   │   ├── InvalidArgumentException.php
│       │   │   │   ├── LogicException.php
│       │   │   │   ├── ProcessFailedException.php
│       │   │   │   ├── ProcessTimedOutException.php
│       │   │   │   └── RuntimeException.php
│       │   │   ├── ExecutableFinder.php
│       │   │   ├── LICENSE
│       │   │   ├── PhpExecutableFinder.php
│       │   │   ├── PhpProcess.php
│       │   │   ├── Pipes
│       │   │   │   ├── AbstractPipes.php
│       │   │   │   ├── PipesInterface.php
│       │   │   │   ├── UnixPipes.php
│       │   │   │   └── WindowsPipes.php
│       │   │   ├── Process.php
│       │   │   ├── ProcessBuilder.php
│       │   │   ├── ProcessUtils.php
│       │   │   └── README.md
│       │   ├── 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
│       │   ├── translation
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Catalogue
│       │   │   │   ├── AbstractOperation.php
│       │   │   │   ├── DiffOperation.php
│       │   │   │   ├── MergeOperation.php
│       │   │   │   └── OperationInterface.php
│       │   │   ├── DataCollector
│       │   │   │   └── TranslationDataCollector.php
│       │   │   ├── DataCollectorTranslator.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
│       │   │   │   ├── AbstractFileExtractor.php
│       │   │   │   ├── 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
│       │   │   ├── LoggingTranslator.php
│       │   │   ├── MessageCatalogue.php
│       │   │   ├── MessageCatalogueInterface.php
│       │   │   ├── MessageSelector.php
│       │   │   ├── MetadataAwareInterface.php
│       │   │   ├── PluralizationRules.php
│       │   │   ├── README.md
│       │   │   ├── Translator.php
│       │   │   ├── TranslatorBagInterface.php
│       │   │   ├── TranslatorInterface.php
│       │   │   └── Writer
│       │   │       └── TranslationWriter.php
│       │   └── var-dumper
│       │       ├── CHANGELOG.md
│       │       ├── Caster
│       │       │   ├── AmqpCaster.php
│       │       │   ├── Caster.php
│       │       │   ├── ConstStub.php
│       │       │   ├── CutStub.php
│       │       │   ├── DOMCaster.php
│       │       │   ├── DoctrineCaster.php
│       │       │   ├── ExceptionCaster.php
│       │       │   ├── MongoCaster.php
│       │       │   ├── PdoCaster.php
│       │       │   ├── ReflectionCaster.php
│       │       │   ├── ResourceCaster.php
│       │       │   ├── SplCaster.php
│       │       │   ├── StubCaster.php
│       │       │   └── XmlResourceCaster.php
│       │       ├── Cloner
│       │       │   ├── AbstractCloner.php
│       │       │   ├── ClonerInterface.php
│       │       │   ├── Cursor.php
│       │       │   ├── Data.php
│       │       │   ├── DumperInterface.php
│       │       │   ├── Stub.php
│       │       │   └── VarCloner.php
│       │       ├── Dumper
│       │       │   ├── AbstractDumper.php
│       │       │   ├── CliDumper.php
│       │       │   ├── DataDumperInterface.php
│       │       │   └── HtmlDumper.php
│       │       ├── Exception
│       │       │   └── ThrowingCasterException.php
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── Resources
│       │       │   └── functions
│       │       │       └── dump.php
│       │       └── VarDumper.php
│       ├── tijsverkoyen
│       │   └── css-to-inline-styles
│       │       ├── LICENSE.md
│       │       └── src
│       │           ├── Css
│       │           │   ├── Processor.php
│       │           │   ├── Property
│       │           │   │   ├── Processor.php
│       │           │   │   └── Property.php
│       │           │   └── Rule
│       │           │       ├── Processor.php
│       │           │       └── Rule.php
│       │           └── CssToInlineStyles.php
│       ├── vlucas
│       │   └── phpdotenv
│       │       ├── LICENSE.txt
│       │       ├── README.md
│       │       └── src
│       │           └── Dotenv.php
│       └── w7corp
│           └── easywechat
│               ├── CHANGELOG.md
│               ├── CONTRIBUTING.md
│               ├── LICENSE
│               ├── README.md
│               ├── phpstan.neon
│               └── src
│                   ├── BasicService
│                   │   ├── Application.php
│                   │   ├── ContentSecurity
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Jssdk
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Media
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── QrCode
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   └── Url
│                   │       ├── Client.php
│                   │       └── ServiceProvider.php
│                   ├── Factory.php
│                   ├── Kernel
│                   │   ├── AccessToken.php
│                   │   ├── BaseClient.php
│                   │   ├── Cache
│                   │   │   └── CacheProviderAdapter.php
│                   │   ├── Clauses
│                   │   │   └── Clause.php
│                   │   ├── Config.php
│                   │   ├── Contracts
│                   │   │   ├── AccessTokenInterface.php
│                   │   │   ├── Arrayable.php
│                   │   │   ├── EventHandlerInterface.php
│                   │   │   ├── MediaInterface.php
│                   │   │   └── MessageInterface.php
│                   │   ├── Decorators
│                   │   │   ├── FinallyResult.php
│                   │   │   └── TerminateResult.php
│                   │   ├── Encryptor.php
│                   │   ├── Events
│                   │   │   ├── AccessTokenRefreshed.php
│                   │   │   ├── ApplicationInitialized.php
│                   │   │   ├── HttpResponseCreated.php
│                   │   │   └── ServerGuardResponseCreated.php
│                   │   ├── Exceptions
│                   │   │   ├── BadRequestException.php
│                   │   │   ├── DecryptException.php
│                   │   │   ├── Exception.php
│                   │   │   ├── HttpException.php
│                   │   │   ├── InvalidArgumentException.php
│                   │   │   ├── InvalidConfigException.php
│                   │   │   ├── RuntimeException.php
│                   │   │   └── UnboundServiceException.php
│                   │   ├── Helpers.php
│                   │   ├── Http
│                   │   │   ├── Response.php
│                   │   │   └── StreamResponse.php
│                   │   ├── Log
│                   │   │   └── LogManager.php
│                   │   ├── Messages
│                   │   │   ├── Article.php
│                   │   │   ├── Card.php
│                   │   │   ├── DeviceEvent.php
│                   │   │   ├── DeviceText.php
│                   │   │   ├── File.php
│                   │   │   ├── Image.php
│                   │   │   ├── Link.php
│                   │   │   ├── Location.php
│                   │   │   ├── Media.php
│                   │   │   ├── Message.php
│                   │   │   ├── MiniProgramPage.php
│                   │   │   ├── MiniprogramNotice.php
│                   │   │   ├── Music.php
│                   │   │   ├── News.php
│                   │   │   ├── NewsItem.php
│                   │   │   ├── Raw.php
│                   │   │   ├── ShortVideo.php
│                   │   │   ├── TaskCard.php
│                   │   │   ├── Text.php
│                   │   │   ├── TextCard.php
│                   │   │   ├── Transfer.php
│                   │   │   ├── Video.php
│                   │   │   └── Voice.php
│                   │   ├── Providers
│                   │   │   ├── ConfigServiceProvider.php
│                   │   │   ├── EventDispatcherServiceProvider.php
│                   │   │   ├── ExtensionServiceProvider.php
│                   │   │   ├── HttpClientServiceProvider.php
│                   │   │   ├── LogServiceProvider.php
│                   │   │   └── RequestServiceProvider.php
│                   │   ├── ServerGuard.php
│                   │   ├── ServiceContainer.php
│                   │   ├── Support
│                   │   │   ├── AES.php
│                   │   │   ├── Arr.php
│                   │   │   ├── ArrayAccessible.php
│                   │   │   ├── Collection.php
│                   │   │   ├── File.php
│                   │   │   ├── Helpers.php
│                   │   │   ├── Str.php
│                   │   │   └── XML.php
│                   │   └── Traits
│                   │       ├── HasAttributes.php
│                   │       ├── HasHttpRequests.php
│                   │       ├── InteractsWithCache.php
│                   │       ├── Observable.php
│                   │       └── ResponseCastable.php
│                   ├── MicroMerchant
│                   │   ├── Application.php
│                   │   ├── Base
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Certficates
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Kernel
│                   │   │   ├── BaseClient.php
│                   │   │   └── Exceptions
│                   │   │       ├── EncryptException.php
│                   │   │       ├── InvalidExtensionException.php
│                   │   │       └── InvalidSignException.php
│                   │   ├── Material
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Media
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── MerchantConfig
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   └── Withdraw
│                   │       ├── Client.php
│                   │       └── ServiceProvider.php
│                   ├── MiniProgram
│                   │   ├── ActivityMessage
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── AppCode
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Application.php
│                   │   ├── Auth
│                   │   │   ├── AccessToken.php
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Base
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Broadcast
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── CustomerService
│                   │   │   └── ServiceProvider.php
│                   │   ├── DataCube
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Encryptor.php
│                   │   ├── Express
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Live
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Mall
│                   │   │   ├── CartClient.php
│                   │   │   ├── ForwardsMall.php
│                   │   │   ├── MediaClient.php
│                   │   │   ├── OrderClient.php
│                   │   │   ├── ProductClient.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── NearbyPoi
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── OCR
│                   │   │   └── ServiceProvider.php
│                   │   ├── OpenData
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Plugin
│                   │   │   ├── Client.php
│                   │   │   ├── DevClient.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── RealtimeLog
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Search
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Server
│                   │   │   └── ServiceProvider.php
│                   │   ├── Soter
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── SubscribeMessage
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── TemplateMessage
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   └── UniformMessage
│                   │       ├── Client.php
│                   │       └── ServiceProvider.php
│                   ├── OfficialAccount
│                   │   ├── Application.php
│                   │   ├── Auth
│                   │   │   ├── AccessToken.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── AutoReply
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Base
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Broadcasting
│                   │   │   ├── Client.php
│                   │   │   ├── MessageBuilder.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Card
│                   │   │   ├── BoardingPassClient.php
│                   │   │   ├── Card.php
│                   │   │   ├── Client.php
│                   │   │   ├── CodeClient.php
│                   │   │   ├── CoinClient.php
│                   │   │   ├── GeneralCardClient.php
│                   │   │   ├── GiftCardClient.php
│                   │   │   ├── GiftCardOrderClient.php
│                   │   │   ├── GiftCardPageClient.php
│                   │   │   ├── InvoiceClient.php
│                   │   │   ├── JssdkClient.php
│                   │   │   ├── MeetingTicketClient.php
│                   │   │   ├── MemberCardClient.php
│                   │   │   ├── MovieTicketClient.php
│                   │   │   ├── ServiceProvider.php
│                   │   │   └── SubMerchantClient.php
│                   │   ├── Comment
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── CustomerService
│                   │   │   ├── Client.php
│                   │   │   ├── Messenger.php
│                   │   │   ├── ServiceProvider.php
│                   │   │   └── SessionClient.php
│                   │   ├── DataCube
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Device
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Goods
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Material
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Menu
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── OAuth
│                   │   │   └── ServiceProvider.php
│                   │   ├── OCR
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── POI
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Semantic
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Server
│                   │   │   ├── Guard.php
│                   │   │   ├── Handlers
│                   │   │   │   └── EchoStrHandler.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── ShakeAround
│                   │   │   ├── Client.php
│                   │   │   ├── DeviceClient.php
│                   │   │   ├── GroupClient.php
│                   │   │   ├── MaterialClient.php
│                   │   │   ├── PageClient.php
│                   │   │   ├── RelationClient.php
│                   │   │   ├── ServiceProvider.php
│                   │   │   ├── ShakeAround.php
│                   │   │   └── StatsClient.php
│                   │   ├── Store
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── TemplateMessage
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── User
│                   │   │   ├── ServiceProvider.php
│                   │   │   ├── TagClient.php
│                   │   │   └── UserClient.php
│                   │   └── WiFi
│                   │       ├── CardClient.php
│                   │       ├── Client.php
│                   │       ├── DeviceClient.php
│                   │       ├── ServiceProvider.php
│                   │       └── ShopClient.php
│                   ├── OpenPlatform
│                   │   ├── Application.php
│                   │   ├── Auth
│                   │   │   ├── AccessToken.php
│                   │   │   ├── ServiceProvider.php
│                   │   │   └── VerifyTicket.php
│                   │   ├── Authorizer
│                   │   │   ├── Aggregate
│                   │   │   │   ├── Account
│                   │   │   │   │   └── Client.php
│                   │   │   │   └── AggregateServiceProvider.php
│                   │   │   ├── Auth
│                   │   │   │   └── AccessToken.php
│                   │   │   ├── MiniProgram
│                   │   │   │   ├── Account
│                   │   │   │   │   ├── Client.php
│                   │   │   │   │   └── ServiceProvider.php
│                   │   │   │   ├── Application.php
│                   │   │   │   ├── Auth
│                   │   │   │   │   └── Client.php
│                   │   │   │   ├── Code
│                   │   │   │   │   ├── Client.php
│                   │   │   │   │   └── ServiceProvider.php
│                   │   │   │   ├── Domain
│                   │   │   │   │   ├── Client.php
│                   │   │   │   │   └── ServiceProvider.php
│                   │   │   │   ├── Material
│                   │   │   │   │   ├── Client.php
│                   │   │   │   │   └── ServiceProvider.php
│                   │   │   │   ├── Setting
│                   │   │   │   │   ├── Client.php
│                   │   │   │   │   └── ServiceProvider.php
│                   │   │   │   └── Tester
│                   │   │   │       ├── Client.php
│                   │   │   │       └── ServiceProvider.php
│                   │   │   ├── OfficialAccount
│                   │   │   │   ├── Account
│                   │   │   │   │   └── Client.php
│                   │   │   │   ├── Application.php
│                   │   │   │   └── MiniProgram
│                   │   │   │       ├── Client.php
│                   │   │   │       └── ServiceProvider.php
│                   │   │   └── Server
│                   │   │       └── Guard.php
│                   │   ├── Base
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── CodeTemplate
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Component
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   └── Server
│                   │       ├── Guard.php
│                   │       ├── Handlers
│                   │       │   ├── Authorized.php
│                   │       │   ├── Unauthorized.php
│                   │       │   ├── UpdateAuthorized.php
│                   │       │   └── VerifyTicketRefreshed.php
│                   │       └── ServiceProvider.php
│                   ├── OpenWork
│                   │   ├── Application.php
│                   │   ├── Auth
│                   │   │   ├── AccessToken.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Corp
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── MiniProgram
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Provider
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Server
│                   │   │   ├── Guard.php
│                   │   │   ├── Handlers
│                   │   │   │   └── EchoStrHandler.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── SuiteAuth
│                   │   │   ├── AccessToken.php
│                   │   │   ├── ServiceProvider.php
│                   │   │   └── SuiteTicket.php
│                   │   └── Work
│                   │       ├── Application.php
│                   │       └── Auth
│                   │           └── AccessToken.php
│                   ├── Payment
│                   │   ├── Application.php
│                   │   ├── Base
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Bill
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Contract
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Coupon
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Fundflow
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Jssdk
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Kernel
│                   │   │   ├── BaseClient.php
│                   │   │   └── Exceptions
│                   │   │       ├── InvalidSignException.php
│                   │   │       └── SandboxException.php
│                   │   ├── Merchant
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Notify
│                   │   │   ├── Handler.php
│                   │   │   ├── Paid.php
│                   │   │   ├── Refunded.php
│                   │   │   └── Scanned.php
│                   │   ├── Order
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── ProfitSharing
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Redpack
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Refund
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Reverse
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Sandbox
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   ├── Security
│                   │   │   ├── Client.php
│                   │   │   └── ServiceProvider.php
│                   │   └── Transfer
│                   │       ├── Client.php
│                   │       └── ServiceProvider.php
│                   └── Work
│                       ├── Agent
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Application.php
│                       ├── Auth
│                       │   ├── AccessToken.php
│                       │   └── ServiceProvider.php
│                       ├── Base
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Calendar
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Chat
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Department
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── ExternalContact
│                       │   ├── Client.php
│                       │   ├── ContactWayClient.php
│                       │   ├── MessageClient.php
│                       │   ├── ServiceProvider.php
│                       │   └── StatisticsClient.php
│                       ├── GroupRobot
│                       │   ├── Client.php
│                       │   ├── Messages
│                       │   │   ├── Image.php
│                       │   │   ├── Markdown.php
│                       │   │   ├── Message.php
│                       │   │   ├── News.php
│                       │   │   ├── NewsItem.php
│                       │   │   └── Text.php
│                       │   ├── Messenger.php
│                       │   └── ServiceProvider.php
│                       ├── Invoice
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Jssdk
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Live
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Media
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Menu
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Message
│                       │   ├── Client.php
│                       │   ├── Messenger.php
│                       │   └── ServiceProvider.php
│                       ├── MiniProgram
│                       │   ├── Application.php
│                       │   └── Auth
│                       │       └── Client.php
│                       ├── MsgAudit
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── OA
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── OAuth
│                       │   ├── Manager.php
│                       │   └── ServiceProvider.php
│                       ├── Schedule
│                       │   ├── Client.php
│                       │   └── ServiceProvider.php
│                       ├── Server
│                       │   ├── Guard.php
│                       │   ├── Handlers
│                       │   │   └── EchoStrHandler.php
│                       │   └── ServiceProvider.php
│                       └── User
│                           ├── Client.php
│                           ├── ServiceProvider.php
│                           └── TagClient.php
├── 说明.htm
├── 安装说明.html
└── 使用说明.txt

1499 directories, 5968 files




标签: 教学 系统

实例下载地址

教学系统源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警