├── .bowerrc ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Common │ ├── function.php │ └── lib │ │ ├── Cates.php │ │ ├── Guestinfo.php │ │ └── aes │ │ ├── ErrorCode.php │ │ ├── PKCS7Encoder.php │ │ ├── WXBizDataCrypt.php │ │ └── demo.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── ArticleController.php │ │ │ ├── AttributegroupController.php │ │ │ ├── AttributevalueController.php │ │ │ ├── CacheapiController.php │ │ │ ├── ClassifyController.php │ │ │ ├── ClassifylinkController.php │ │ │ ├── ClassifyproductController.php │ │ │ ├── ClassifyquestionController.php │ │ │ ├── ClassifywechatController.php │ │ │ ├── DeleteapiController.php │ │ │ ├── DistrictController.php │ │ │ ├── ExpresstemplateController.php │ │ │ ├── ExpressvalueController.php │ │ │ ├── HomeController.php │ │ │ ├── LetterController.php │ │ │ ├── LinkController.php │ │ │ ├── LogController.php │ │ │ ├── MarkdownapiController.php │ │ │ ├── NavigationController.php │ │ │ ├── OneactionapiController.php │ │ │ ├── PictureController.php │ │ │ ├── ProductController.php │ │ │ ├── ProductattributeController.php │ │ │ ├── PublicController.php │ │ │ ├── QuestionController.php │ │ │ ├── QuestionoptionController.php │ │ │ ├── SettingController.php │ │ │ ├── UserController.php │ │ │ ├── UserpermissionController.php │ │ │ ├── UserroleController.php │ │ │ ├── WechatController.php │ │ │ ├── WechatreplyimagetextController.php │ │ │ ├── WechatreplytextController.php │ │ │ ├── WechatuserController.php │ │ │ └── XcxmpController.php │ │ ├── Api │ │ │ └── V1 │ │ │ │ ├── PublicController.php │ │ │ │ ├── UserController.php │ │ │ │ └── Xcx │ │ │ │ ├── AddressController.php │ │ │ │ ├── BusinesscardController.php │ │ │ │ ├── DeleteapiController.php │ │ │ │ ├── DistrictController.php │ │ │ │ ├── GetlocationController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── ProductController.php │ │ │ │ ├── ProxyinterfaceController.php │ │ │ │ ├── PublicController.php │ │ │ │ ├── ScoreController.php │ │ │ │ ├── ShoppingcartController.php │ │ │ │ └── UserController.php │ │ ├── CacheapiController.php │ │ ├── CaptchaController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── PublicController.php │ │ ├── User │ │ │ ├── DeleteapiController.php │ │ │ ├── DistrictController.php │ │ │ ├── ExperienceController.php │ │ │ ├── LetterController.php │ │ │ ├── LogController.php │ │ │ ├── LoginController.php │ │ │ ├── OneactionapiController.php │ │ │ ├── PublicController.php │ │ │ ├── RegisterController.php │ │ │ ├── ScoreController.php │ │ │ └── UserController.php │ │ └── Wechat │ │ │ ├── ApiController.php │ │ │ └── PublicController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AuthAdminMiddleware.php │ │ ├── Authenticate.php │ │ ├── CorsMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── GetUserJWTAuthToken.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SsoMiddleware.php │ │ └── VerifyCsrfToken.php │ ├── Model │ │ ├── Article.php │ │ ├── Attributegroup.php │ │ ├── Attributevalue.php │ │ ├── Classify.php │ │ ├── Classifylink.php │ │ ├── Classifyproduct.php │ │ ├── Classifyquestion.php │ │ ├── Classifywechat.php │ │ ├── District.php │ │ ├── Experience.php │ │ ├── Expresstemplate.php │ │ ├── Expressvalue.php │ │ ├── Letter.php │ │ ├── Link.php │ │ ├── Log.php │ │ ├── Navigation.php │ │ ├── Permission.php │ │ ├── Picture.php │ │ ├── Product.php │ │ ├── Productattribute.php │ │ ├── Productattributegroupvalue.php │ │ ├── Question.php │ │ ├── Questionoption.php │ │ ├── Role.php │ │ ├── Score.php │ │ ├── User.php │ │ ├── Userinfo.php │ │ ├── Wechat.php │ │ ├── Wechatkeyword.php │ │ ├── Wechatreplyimagetext.php │ │ ├── Wechatreplytext.php │ │ ├── Wechatuser.php │ │ ├── Xcxaddress.php │ │ ├── Xcxbusinesscard.php │ │ ├── Xcxmp.php │ │ ├── Xcxscore.php │ │ ├── Xcxshoppingcart.php │ │ └── Xcxuser.php │ ├── Requests │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Policies │ └── .gitkeep └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── bower.json ├── cd ├── composer.json ├── composer.lock ├── config ├── UEditorUpload.php ├── api.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── debugbar.php ├── editor.php ├── entrust.php ├── filesystems.php ├── hashids.php ├── image.php ├── jwt.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_08_29_030826_create_userinfos_table.php │ ├── 2016_09_07_020701_create_logs_table.php │ ├── 2016_09_29_033513_entrust_setup_tables.php │ ├── 2016_10_10_020548_create_classifies_table.php │ ├── 2016_10_10_020548_create_navigations_table.php │ ├── 2016_10_14_031628_create_districts_table.php │ ├── 2016_10_15_060229_create_articles_table.php │ ├── 2016_10_18_231205_create_pictures_table.php │ ├── 2016_10_19_044342_create_links_table.php │ ├── 2016_10_20_100235_create_letters_table.php │ ├── 2016_10_22_083716_create_classifylinks_table.php │ ├── 2016_10_22_093035_create_wechats_table.php │ ├── 2016_10_28_020548_create_classifyproducts_table.php │ ├── 2016_10_28_060229_create_products_table.php │ ├── 2016_11_03_020548_create_classifyquestions_table.php │ ├── 2016_11_04_060229_create_questions_table.php │ ├── 2016_11_04_060239_create_questionoptions_table.php │ ├── 2016_11_08_030826_create_wechatusers_table.php │ ├── 2016_11_09_030826_create_wechatkeywords_table.php │ ├── 2016_11_09_030827_create_wechatreplytexts_table.php │ ├── 2016_11_09_030828_create_wechatreplyimagetexts_table.php │ ├── 2016_11_10_020548_create_classifywechats_table.php │ ├── 2016_11_17_020701_create_experiences_table.php │ ├── 2016_11_18_020702_create_scores_table.php │ ├── 2016_11_28_020703_create_xcxbusinesscards_table.php │ ├── 2016_11_29_030826_create_xcxusers_table.php │ ├── 2016_12_01_093035_create_xcxmps_table.php │ ├── 2016_12_12_020702_create_xcxscores_table.php │ ├── 2016_12_21_093036_create_xcxshoppingcarts_table.php │ ├── 2016_12_21_093037_create_xcxaddresses_table.php │ ├── 2016_12_27_020550_create_attributegroups_table.php │ ├── 2016_12_28_020551_create_attributevalues_table.php │ ├── 2016_12_28_020552_create_productattributes_table.php │ ├── 2016_12_29_020553_create_productattributegroupvalues_table.php │ ├── 2016_12_30_020554_create_expresstemplates_table.php │ └── 2017_01_09_020555_create_expressvalues_table.php └── seeds │ ├── .gitkeep │ ├── AttributegroupSeeder.php │ ├── AttributevalueSeeder.php │ ├── DatabaseSeeder.php │ ├── DistrictSeeder.php │ ├── PermissionSeeder.php │ ├── RoleSeeder.php │ ├── UserSeeder.php │ └── district.sql ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .gitignore ├── .htaccess ├── build │ ├── css │ │ ├── admin-c468907bf8.css │ │ ├── home-ea169388a7.css │ │ ├── login-7f29ba7dfa.css │ │ └── user-44c1e94bc8.css │ ├── js │ │ ├── admin-2e4525e381.js │ │ ├── home-5198eec6a3.js │ │ ├── login-21580a9cd9.js │ │ └── user-d490567b76.js │ └── rev-manifest.json ├── css │ ├── admin.css │ ├── home.css │ ├── login.css │ └── user.css ├── favicon.ico ├── images │ ├── alipay.jpg │ ├── avatar │ │ ├── 200.png │ │ ├── 400.png │ │ └── 800.png │ ├── emjoi.png │ ├── home │ │ ├── banner1.jpg │ │ ├── banner2.jpg │ │ ├── banner3.jpg │ │ ├── banner4.jpg │ │ ├── banner5.jpg │ │ ├── bannerad.jpg │ │ ├── chi.gif │ │ ├── dc.jpg │ │ ├── demo │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ ├── ic11.jpg │ │ ├── ic12.jpg │ │ ├── ic13.jpg │ │ ├── ic14.jpg │ │ ├── thumbs │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ │ └── tu │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ └── logo │ │ ├── logo.png │ │ └── logo2.png ├── index.php ├── js │ ├── admin.js │ ├── home.js │ ├── login.js │ └── user.js ├── laravel-u-editor │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ ├── index.html │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ ├── zh-cn │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ └── zh-cn.js │ │ └── zh-tw │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-tw.js │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js ├── module │ ├── AdminLTE │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── bower.json │ │ ├── build │ │ │ ├── bootstrap-less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ └── variables.less │ │ │ └── less │ │ │ │ ├── .csslintrc │ │ │ │ ├── 404_500_errors.less │ │ │ │ ├── AdminLTE.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap-social.less │ │ │ │ ├── boxes.less │ │ │ │ ├── buttons.less │ │ │ │ ├── callout.less │ │ │ │ ├── carousel.less │ │ │ │ ├── control-sidebar.less │ │ │ │ ├── core.less │ │ │ │ ├── direct-chat.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── forms.less │ │ │ │ ├── fullcalendar.less │ │ │ │ ├── header.less │ │ │ │ ├── info-box.less │ │ │ │ ├── invoice.less │ │ │ │ ├── labels.less │ │ │ │ ├── lockscreen.less │ │ │ │ ├── login_and_register.less │ │ │ │ ├── mailbox.less │ │ │ │ ├── miscellaneous.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modal.less │ │ │ │ ├── navs.less │ │ │ │ ├── print.less │ │ │ │ ├── products.less │ │ │ │ ├── profile.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── select2.less │ │ │ │ ├── sidebar-mini.less │ │ │ │ ├── sidebar.less │ │ │ │ ├── skins │ │ │ │ ├── _all-skins.less │ │ │ │ ├── skin-black-light.less │ │ │ │ ├── skin-black.less │ │ │ │ ├── skin-blue-light.less │ │ │ │ ├── skin-blue.less │ │ │ │ ├── skin-green-light.less │ │ │ │ ├── skin-green.less │ │ │ │ ├── skin-purple-light.less │ │ │ │ ├── skin-purple.less │ │ │ │ ├── skin-red-light.less │ │ │ │ ├── skin-red.less │ │ │ │ ├── skin-yellow-light.less │ │ │ │ └── skin-yellow.less │ │ │ │ ├── small-box.less │ │ │ │ ├── social-widgets.less │ │ │ │ ├── table.less │ │ │ │ ├── timeline.less │ │ │ │ ├── users-list.less │ │ │ │ └── variables.less │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── AdminLTE.css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ ├── font-awesome │ │ │ │ │ └── 4.6.3 │ │ │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── less │ │ │ │ │ │ ├── animated.less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── screen-reader.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── ionicons │ │ │ │ │ └── 2.0.1 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── build_data.json │ │ │ │ │ │ ├── cheatsheet │ │ │ │ │ │ │ ├── icon-row.html │ │ │ │ │ │ │ └── template.html │ │ │ │ │ │ ├── generate.py │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ ├── eotlitetool.py │ │ │ │ │ │ │ ├── generate_font.py │ │ │ │ │ │ │ └── sfnt2woff │ │ │ │ │ │ ├── cheatsheet.html │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ionicons.css │ │ │ │ │ │ └── ionicons.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── ionicons.eot │ │ │ │ │ │ ├── ionicons.svg │ │ │ │ │ │ ├── ionicons.ttf │ │ │ │ │ │ └── ionicons.woff │ │ │ │ │ │ ├── less │ │ │ │ │ │ ├── _ionicons-font.less │ │ │ │ │ │ ├── _ionicons-icons.less │ │ │ │ │ │ ├── _ionicons-variables.less │ │ │ │ │ │ └── ionicons.less │ │ │ │ │ │ ├── png │ │ │ │ │ │ └── 512 │ │ │ │ │ │ │ ├── alert-circled.png │ │ │ │ │ │ │ ├── alert.png │ │ │ │ │ │ │ ├── android-add-contact.png │ │ │ │ │ │ │ ├── android-add.png │ │ │ │ │ │ │ ├── android-alarm.png │ │ │ │ │ │ │ ├── android-archive.png │ │ │ │ │ │ │ ├── android-arrow-back.png │ │ │ │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ │ │ │ ├── android-arrow-forward.png │ │ │ │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ │ │ │ ├── android-battery.png │ │ │ │ │ │ │ ├── android-book.png │ │ │ │ │ │ │ ├── android-calendar.png │ │ │ │ │ │ │ ├── android-call.png │ │ │ │ │ │ │ ├── android-camera.png │ │ │ │ │ │ │ ├── android-chat.png │ │ │ │ │ │ │ ├── android-checkmark.png │ │ │ │ │ │ │ ├── android-clock.png │ │ │ │ │ │ │ ├── android-close.png │ │ │ │ │ │ │ ├── android-contact.png │ │ │ │ │ │ │ ├── android-contacts.png │ │ │ │ │ │ │ ├── android-data.png │ │ │ │ │ │ │ ├── android-developer.png │ │ │ │ │ │ │ ├── android-display.png │ │ │ │ │ │ │ ├── android-download.png │ │ │ │ │ │ │ ├── android-drawer.png │ │ │ │ │ │ │ ├── android-dropdown.png │ │ │ │ │ │ │ ├── android-earth.png │ │ │ │ │ │ │ ├── android-folder.png │ │ │ │ │ │ │ ├── android-forums.png │ │ │ │ │ │ │ ├── android-friends.png │ │ │ │ │ │ │ ├── android-hand.png │ │ │ │ │ │ │ ├── android-image.png │ │ │ │ │ │ │ ├── android-inbox.png │ │ │ │ │ │ │ ├── android-information.png │ │ │ │ │ │ │ ├── android-keypad.png │ │ │ │ │ │ │ ├── android-lightbulb.png │ │ │ │ │ │ │ ├── android-locate.png │ │ │ │ │ │ │ ├── android-location.png │ │ │ │ │ │ │ ├── android-mail.png │ │ │ │ │ │ │ ├── android-microphone.png │ │ │ │ │ │ │ ├── android-mixer.png │ │ │ │ │ │ │ ├── android-more.png │ │ │ │ │ │ │ ├── android-note.png │ │ │ │ │ │ │ ├── android-playstore.png │ │ │ │ │ │ │ ├── android-printer.png │ │ │ │ │ │ │ ├── android-promotion.png │ │ │ │ │ │ │ ├── android-reminder.png │ │ │ │ │ │ │ ├── android-remove.png │ │ │ │ │ │ │ ├── android-search.png │ │ │ │ │ │ │ ├── android-send.png │ │ │ │ │ │ │ ├── android-settings.png │ │ │ │ │ │ │ ├── android-share.png │ │ │ │ │ │ │ ├── android-social-user.png │ │ │ │ │ │ │ ├── android-social.png │ │ │ │ │ │ │ ├── android-sort.png │ │ │ │ │ │ │ ├── android-stair-drawer.png │ │ │ │ │ │ │ ├── android-star.png │ │ │ │ │ │ │ ├── android-stopwatch.png │ │ │ │ │ │ │ ├── android-storage.png │ │ │ │ │ │ │ ├── android-system-back.png │ │ │ │ │ │ │ ├── android-system-home.png │ │ │ │ │ │ │ ├── android-system-windows.png │ │ │ │ │ │ │ ├── android-timer.png │ │ │ │ │ │ │ ├── android-trash.png │ │ │ │ │ │ │ ├── android-user-menu.png │ │ │ │ │ │ │ ├── android-volume.png │ │ │ │ │ │ │ ├── android-wifi.png │ │ │ │ │ │ │ ├── aperture.png │ │ │ │ │ │ │ ├── archive.png │ │ │ │ │ │ │ ├── arrow-down-a.png │ │ │ │ │ │ │ ├── arrow-down-b.png │ │ │ │ │ │ │ ├── arrow-down-c.png │ │ │ │ │ │ │ ├── arrow-expand.png │ │ │ │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ │ │ │ ├── arrow-left-a.png │ │ │ │ │ │ │ ├── arrow-left-b.png │ │ │ │ │ │ │ ├── arrow-left-c.png │ │ │ │ │ │ │ ├── arrow-move.png │ │ │ │ │ │ │ ├── arrow-resize.png │ │ │ │ │ │ │ ├── arrow-return-left.png │ │ │ │ │ │ │ ├── arrow-return-right.png │ │ │ │ │ │ │ ├── arrow-right-a.png │ │ │ │ │ │ │ ├── arrow-right-b.png │ │ │ │ │ │ │ ├── arrow-right-c.png │ │ │ │ │ │ │ ├── arrow-shrink.png │ │ │ │ │ │ │ ├── arrow-swap.png │ │ │ │ │ │ │ ├── arrow-up-a.png │ │ │ │ │ │ │ ├── arrow-up-b.png │ │ │ │ │ │ │ ├── arrow-up-c.png │ │ │ │ │ │ │ ├── asterisk.png │ │ │ │ │ │ │ ├── at.png │ │ │ │ │ │ │ ├── bag.png │ │ │ │ │ │ │ ├── battery-charging.png │ │ │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ │ │ ├── battery-full.png │ │ │ │ │ │ │ ├── battery-half.png │ │ │ │ │ │ │ ├── battery-low.png │ │ │ │ │ │ │ ├── beaker.png │ │ │ │ │ │ │ ├── beer.png │ │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ │ ├── bonfire.png │ │ │ │ │ │ │ ├── bookmark.png │ │ │ │ │ │ │ ├── briefcase.png │ │ │ │ │ │ │ ├── bug.png │ │ │ │ │ │ │ ├── calculator.png │ │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ │ ├── card.png │ │ │ │ │ │ │ ├── cash.png │ │ │ │ │ │ │ ├── chatbox-working.png │ │ │ │ │ │ │ ├── chatbox.png │ │ │ │ │ │ │ ├── chatboxes.png │ │ │ │ │ │ │ ├── chatbubble-working.png │ │ │ │ │ │ │ ├── chatbubble.png │ │ │ │ │ │ │ ├── chatbubbles.png │ │ │ │ │ │ │ ├── checkmark-circled.png │ │ │ │ │ │ │ ├── checkmark-round.png │ │ │ │ │ │ │ ├── checkmark.png │ │ │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ │ │ ├── chevron-left.png │ │ │ │ │ │ │ ├── chevron-right.png │ │ │ │ │ │ │ ├── chevron-up.png │ │ │ │ │ │ │ ├── clipboard.png │ │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ │ ├── close-circled.png │ │ │ │ │ │ │ ├── close-round.png │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── closed-captioning.png │ │ │ │ │ │ │ ├── cloud.png │ │ │ │ │ │ │ ├── code-download.png │ │ │ │ │ │ │ ├── code-working.png │ │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ │ ├── coffee.png │ │ │ │ │ │ │ ├── compass.png │ │ │ │ │ │ │ ├── compose.png │ │ │ │ │ │ │ ├── connection-bars.png │ │ │ │ │ │ │ ├── contrast.png │ │ │ │ │ │ │ ├── cube.png │ │ │ │ │ │ │ ├── disc.png │ │ │ │ │ │ │ ├── document-text.png │ │ │ │ │ │ │ ├── document.png │ │ │ │ │ │ │ ├── drag.png │ │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ │ ├── edit.png │ │ │ │ │ │ │ ├── egg.png │ │ │ │ │ │ │ ├── eject.png │ │ │ │ │ │ │ ├── email.png │ │ │ │ │ │ │ ├── eye-disabled.png │ │ │ │ │ │ │ ├── eye.png │ │ │ │ │ │ │ ├── female.png │ │ │ │ │ │ │ ├── filing.png │ │ │ │ │ │ │ ├── film-marker.png │ │ │ │ │ │ │ ├── fireball.png │ │ │ │ │ │ │ ├── flag.png │ │ │ │ │ │ │ ├── flame.png │ │ │ │ │ │ │ ├── flash-off.png │ │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ │ ├── flask.png │ │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ │ ├── fork-repo.png │ │ │ │ │ │ │ ├── fork.png │ │ │ │ │ │ │ ├── forward.png │ │ │ │ │ │ │ ├── funnel.png │ │ │ │ │ │ │ ├── game-controller-a.png │ │ │ │ │ │ │ ├── game-controller-b.png │ │ │ │ │ │ │ ├── gear-a.png │ │ │ │ │ │ │ ├── gear-b.png │ │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ │ ├── hammer.png │ │ │ │ │ │ │ ├── happy.png │ │ │ │ │ │ │ ├── headphone.png │ │ │ │ │ │ │ ├── heart-broken.png │ │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ │ ├── help-buoy.png │ │ │ │ │ │ │ ├── help-circled.png │ │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ │ ├── icecream.png │ │ │ │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ ├── images.png │ │ │ │ │ │ │ ├── information-circled.png │ │ │ │ │ │ │ ├── information.png │ │ │ │ │ │ │ ├── ionic.png │ │ │ │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ │ │ │ ├── ios7-alarm.png │ │ │ │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ │ │ │ ├── ios7-albums.png │ │ │ │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ │ │ │ ├── ios7-analytics.png │ │ │ │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ │ │ │ ├── ios7-at-outline.png │ │ │ │ │ │ │ ├── ios7-at.png │ │ │ │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ │ │ │ ├── ios7-barcode.png │ │ │ │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ │ │ │ ├── ios7-baseball.png │ │ │ │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ │ │ │ ├── ios7-basketball.png │ │ │ │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ │ │ │ ├── ios7-bell.png │ │ │ │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ │ │ │ ├── ios7-bolt.png │ │ │ │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ │ │ │ ├── ios7-box-outline.png │ │ │ │ │ │ │ ├── ios7-box.png │ │ │ │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ │ │ │ ├── ios7-briefcase.png │ │ │ │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ │ │ │ ├── ios7-browsers.png │ │ │ │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ │ │ │ ├── ios7-calculator.png │ │ │ │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ │ │ │ ├── ios7-calendar.png │ │ │ │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ │ │ │ ├── ios7-camera.png │ │ │ │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ │ │ │ ├── ios7-cart.png │ │ │ │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ │ │ │ ├── ios7-checkmark.png │ │ │ │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ │ │ │ ├── ios7-clock.png │ │ │ │ │ │ │ ├── ios7-close-empty.png │ │ │ │ │ │ │ ├── ios7-close-outline.png │ │ │ │ │ │ │ ├── ios7-close.png │ │ │ │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ │ │ │ ├── ios7-cloud.png │ │ │ │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ │ │ │ ├── ios7-cloudy.png │ │ │ │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ │ │ │ ├── ios7-cog.png │ │ │ │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ │ │ │ ├── ios7-compose.png │ │ │ │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ │ │ │ ├── ios7-contact.png │ │ │ │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ │ │ │ ├── ios7-copy.png │ │ │ │ │ │ │ ├── ios7-download-outline.png │ │ │ │ │ │ │ ├── ios7-download.png │ │ │ │ │ │ │ ├── ios7-drag.png │ │ │ │ │ │ │ ├── ios7-email-outline.png │ │ │ │ │ │ │ ├── ios7-email.png │ │ │ │ │ │ │ ├── ios7-expand.png │ │ │ │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ │ │ │ ├── ios7-eye.png │ │ │ │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ │ │ │ ├── ios7-fastforward.png │ │ │ │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ │ │ │ ├── ios7-filing.png │ │ │ │ │ │ │ ├── ios7-film-outline.png │ │ │ │ │ │ │ ├── ios7-film.png │ │ │ │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ │ │ │ ├── ios7-flag.png │ │ │ │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ │ │ │ ├── ios7-folder.png │ │ │ │ │ │ │ ├── ios7-football-outline.png │ │ │ │ │ │ │ ├── ios7-football.png │ │ │ │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ │ │ │ ├── ios7-gear.png │ │ │ │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ │ │ │ ├── ios7-glasses.png │ │ │ │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ │ │ │ ├── ios7-heart.png │ │ │ │ │ │ │ ├── ios7-help-empty.png │ │ │ │ │ │ │ ├── ios7-help-outline.png │ │ │ │ │ │ │ ├── ios7-help.png │ │ │ │ │ │ │ ├── ios7-home-outline.png │ │ │ │ │ │ │ ├── ios7-home.png │ │ │ │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ │ │ │ ├── ios7-infinite.png │ │ │ │ │ │ │ ├── ios7-information-empty.png │ │ │ │ │ │ │ ├── ios7-information-outline.png │ │ │ │ │ │ │ ├── ios7-information.png │ │ │ │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ │ │ │ ├── ios7-keypad.png │ │ │ │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ │ │ │ ├── ios7-location-outline.png │ │ │ │ │ │ │ ├── ios7-location.png │ │ │ │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ │ │ │ ├── ios7-locked.png │ │ │ │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ │ │ │ ├── ios7-loop.png │ │ │ │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ │ │ │ ├── ios7-medkit.png │ │ │ │ │ │ │ ├── ios7-mic-off.png │ │ │ │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ │ │ │ ├── ios7-mic.png │ │ │ │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ │ │ │ ├── ios7-minus.png │ │ │ │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ │ │ │ ├── ios7-monitor.png │ │ │ │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ │ │ │ ├── ios7-moon.png │ │ │ │ │ │ │ ├── ios7-more-outline.png │ │ │ │ │ │ │ ├── ios7-more.png │ │ │ │ │ │ │ ├── ios7-musical-note.png │ │ │ │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ │ │ │ ├── ios7-navigate.png │ │ │ │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ │ │ │ ├── ios7-paper.png │ │ │ │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ │ │ │ ├── ios7-paperplane.png │ │ │ │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ │ │ │ ├── ios7-pause.png │ │ │ │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ │ │ │ ├── ios7-paw.png │ │ │ │ │ │ │ ├── ios7-people-outline.png │ │ │ │ │ │ │ ├── ios7-people.png │ │ │ │ │ │ │ ├── ios7-person-outline.png │ │ │ │ │ │ │ ├── ios7-person.png │ │ │ │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ │ │ │ ├── ios7-personadd.png │ │ │ │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ │ │ │ ├── ios7-photos.png │ │ │ │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ │ │ │ ├── ios7-pie.png │ │ │ │ │ │ │ ├── ios7-play-outline.png │ │ │ │ │ │ │ ├── ios7-play.png │ │ │ │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ │ │ │ ├── ios7-plus.png │ │ │ │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ │ │ │ ├── ios7-pricetag.png │ │ │ │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ │ │ │ ├── ios7-pricetags.png │ │ │ │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ │ │ │ ├── ios7-printer.png │ │ │ │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ │ │ │ ├── ios7-pulse.png │ │ │ │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ │ │ │ ├── ios7-rainy.png │ │ │ │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ │ │ │ ├── ios7-recording.png │ │ │ │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ │ │ │ ├── ios7-redo.png │ │ │ │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ │ │ │ ├── ios7-refresh.png │ │ │ │ │ │ │ ├── ios7-reload.png │ │ │ │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ │ │ │ ├── ios7-rewind.png │ │ │ │ │ │ │ ├── ios7-search-strong.png │ │ │ │ │ │ │ ├── ios7-search.png │ │ │ │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ │ │ │ ├── ios7-settings.png │ │ │ │ │ │ │ ├── ios7-shrink.png │ │ │ │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ │ │ │ ├── ios7-skipforward.png │ │ │ │ │ │ │ ├── ios7-snowy.png │ │ │ │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ │ │ │ ├── ios7-speedometer.png │ │ │ │ │ │ │ ├── ios7-star-half.png │ │ │ │ │ │ │ ├── ios7-star-outline.png │ │ │ │ │ │ │ ├── ios7-star.png │ │ │ │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ │ │ │ ├── ios7-sunny.png │ │ │ │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ │ │ │ ├── ios7-telephone.png │ │ │ │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ │ │ │ ├── ios7-tennisball.png │ │ │ │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ │ │ │ ├── ios7-time-outline.png │ │ │ │ │ │ │ ├── ios7-time.png │ │ │ │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ │ │ │ ├── ios7-timer.png │ │ │ │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ │ │ │ ├── ios7-toggle.png │ │ │ │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ │ │ │ ├── ios7-trash.png │ │ │ │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ │ │ │ ├── ios7-undo.png │ │ │ │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ │ │ │ ├── ios7-unlocked.png │ │ │ │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ │ │ │ ├── ios7-upload.png │ │ │ │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ │ │ │ ├── ios7-videocam.png │ │ │ │ │ │ │ ├── ios7-volume-high.png │ │ │ │ │ │ │ ├── ios7-volume-low.png │ │ │ │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ │ │ │ ├── ios7-wineglass.png │ │ │ │ │ │ │ ├── ios7-world-outline.png │ │ │ │ │ │ │ ├── ios7-world.png │ │ │ │ │ │ │ ├── ipad.png │ │ │ │ │ │ │ ├── iphone.png │ │ │ │ │ │ │ ├── ipod.png │ │ │ │ │ │ │ ├── jet.png │ │ │ │ │ │ │ ├── key.png │ │ │ │ │ │ │ ├── knife.png │ │ │ │ │ │ │ ├── laptop.png │ │ │ │ │ │ │ ├── leaf.png │ │ │ │ │ │ │ ├── levels.png │ │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ │ ├── load-a.png │ │ │ │ │ │ │ ├── load-b.png │ │ │ │ │ │ │ ├── load-c.png │ │ │ │ │ │ │ ├── load-d.png │ │ │ │ │ │ │ ├── location.png │ │ │ │ │ │ │ ├── locked.png │ │ │ │ │ │ │ ├── log-in.png │ │ │ │ │ │ │ ├── log-out.png │ │ │ │ │ │ │ ├── loop.png │ │ │ │ │ │ │ ├── magnet.png │ │ │ │ │ │ │ ├── male.png │ │ │ │ │ │ │ ├── man.png │ │ │ │ │ │ │ ├── map.png │ │ │ │ │ │ │ ├── medkit.png │ │ │ │ │ │ │ ├── merge.png │ │ │ │ │ │ │ ├── mic-a.png │ │ │ │ │ │ │ ├── mic-b.png │ │ │ │ │ │ │ ├── mic-c.png │ │ │ │ │ │ │ ├── minus-circled.png │ │ │ │ │ │ │ ├── minus-round.png │ │ │ │ │ │ │ ├── minus.png │ │ │ │ │ │ │ ├── model-s.png │ │ │ │ │ │ │ ├── monitor.png │ │ │ │ │ │ │ ├── more.png │ │ │ │ │ │ │ ├── mouse.png │ │ │ │ │ │ │ ├── music-note.png │ │ │ │ │ │ │ ├── navicon-round.png │ │ │ │ │ │ │ ├── navicon.png │ │ │ │ │ │ │ ├── navigate.png │ │ │ │ │ │ │ ├── network.png │ │ │ │ │ │ │ ├── no-smoking.png │ │ │ │ │ │ │ ├── nuclear.png │ │ │ │ │ │ │ ├── outlet.png │ │ │ │ │ │ │ ├── paper-airplane.png │ │ │ │ │ │ │ ├── paperclip.png │ │ │ │ │ │ │ ├── pause.png │ │ │ │ │ │ │ ├── person-add.png │ │ │ │ │ │ │ ├── person-stalker.png │ │ │ │ │ │ │ ├── person.png │ │ │ │ │ │ │ ├── pie-graph.png │ │ │ │ │ │ │ ├── pin.png │ │ │ │ │ │ │ ├── pinpoint.png │ │ │ │ │ │ │ ├── pizza.png │ │ │ │ │ │ │ ├── plane.png │ │ │ │ │ │ │ ├── planet.png │ │ │ │ │ │ │ ├── play.png │ │ │ │ │ │ │ ├── playstation.png │ │ │ │ │ │ │ ├── plus-circled.png │ │ │ │ │ │ │ ├── plus-round.png │ │ │ │ │ │ │ ├── plus.png │ │ │ │ │ │ │ ├── podium.png │ │ │ │ │ │ │ ├── pound.png │ │ │ │ │ │ │ ├── power.png │ │ │ │ │ │ │ ├── pricetag.png │ │ │ │ │ │ │ ├── pricetags.png │ │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ │ ├── pull-request.png │ │ │ │ │ │ │ ├── qr-scanner.png │ │ │ │ │ │ │ ├── quote.png │ │ │ │ │ │ │ ├── radio-waves.png │ │ │ │ │ │ │ ├── record.png │ │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ │ ├── reply-all.png │ │ │ │ │ │ │ ├── reply.png │ │ │ │ │ │ │ ├── ribbon-a.png │ │ │ │ │ │ │ ├── ribbon-b.png │ │ │ │ │ │ │ ├── sad.png │ │ │ │ │ │ │ ├── scissors.png │ │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ │ ├── share.png │ │ │ │ │ │ │ ├── shuffle.png │ │ │ │ │ │ │ ├── skip-backward.png │ │ │ │ │ │ │ ├── skip-forward.png │ │ │ │ │ │ │ ├── social-android-outline.png │ │ │ │ │ │ │ ├── social-android.png │ │ │ │ │ │ │ ├── social-apple-outline.png │ │ │ │ │ │ │ ├── social-apple.png │ │ │ │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ │ │ │ ├── social-bitcoin.png │ │ │ │ │ │ │ ├── social-buffer-outline.png │ │ │ │ │ │ │ ├── social-buffer.png │ │ │ │ │ │ │ ├── social-designernews-outline.png │ │ │ │ │ │ │ ├── social-designernews.png │ │ │ │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ │ │ │ ├── social-dribbble.png │ │ │ │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ │ │ │ ├── social-dropbox.png │ │ │ │ │ │ │ ├── social-facebook-outline.png │ │ │ │ │ │ │ ├── social-facebook.png │ │ │ │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ │ │ │ ├── social-foursquare.png │ │ │ │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ │ │ │ ├── social-github-outline.png │ │ │ │ │ │ │ ├── social-github.png │ │ │ │ │ │ │ ├── social-google-outline.png │ │ │ │ │ │ │ ├── social-google.png │ │ │ │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ │ │ │ ├── social-googleplus.png │ │ │ │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ │ │ │ ├── social-hackernews.png │ │ │ │ │ │ │ ├── social-instagram-outline.png │ │ │ │ │ │ │ ├── social-instagram.png │ │ │ │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ │ │ │ ├── social-linkedin.png │ │ │ │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ │ │ │ ├── social-pinterest.png │ │ │ │ │ │ │ ├── social-reddit-outline.png │ │ │ │ │ │ │ ├── social-reddit.png │ │ │ │ │ │ │ ├── social-rss-outline.png │ │ │ │ │ │ │ ├── social-rss.png │ │ │ │ │ │ │ ├── social-skype-outline.png │ │ │ │ │ │ │ ├── social-skype.png │ │ │ │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ │ │ │ ├── social-tumblr.png │ │ │ │ │ │ │ ├── social-tux.png │ │ │ │ │ │ │ ├── social-twitter-outline.png │ │ │ │ │ │ │ ├── social-twitter.png │ │ │ │ │ │ │ ├── social-usd-outline.png │ │ │ │ │ │ │ ├── social-usd.png │ │ │ │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ │ │ │ ├── social-vimeo.png │ │ │ │ │ │ │ ├── social-windows-outline.png │ │ │ │ │ │ │ ├── social-windows.png │ │ │ │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ │ │ │ ├── social-wordpress.png │ │ │ │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ │ │ │ ├── social-yahoo.png │ │ │ │ │ │ │ ├── social-youtube-outline.png │ │ │ │ │ │ │ ├── social-youtube.png │ │ │ │ │ │ │ ├── speakerphone.png │ │ │ │ │ │ │ ├── speedometer.png │ │ │ │ │ │ │ ├── spoon.png │ │ │ │ │ │ │ ├── star.png │ │ │ │ │ │ │ ├── stats-bars.png │ │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ │ ├── stop.png │ │ │ │ │ │ │ ├── thermometer.png │ │ │ │ │ │ │ ├── thumbsdown.png │ │ │ │ │ │ │ ├── thumbsup.png │ │ │ │ │ │ │ ├── toggle-filled.png │ │ │ │ │ │ │ ├── toggle.png │ │ │ │ │ │ │ ├── trash-a.png │ │ │ │ │ │ │ ├── trash-b.png │ │ │ │ │ │ │ ├── trophy.png │ │ │ │ │ │ │ ├── umbrella.png │ │ │ │ │ │ │ ├── university.png │ │ │ │ │ │ │ ├── unlocked.png │ │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ │ ├── usb.png │ │ │ │ │ │ │ ├── videocamera.png │ │ │ │ │ │ │ ├── volume-high.png │ │ │ │ │ │ │ ├── volume-low.png │ │ │ │ │ │ │ ├── volume-medium.png │ │ │ │ │ │ │ ├── volume-mute.png │ │ │ │ │ │ │ ├── wand.png │ │ │ │ │ │ │ ├── waterdrop.png │ │ │ │ │ │ │ ├── wifi.png │ │ │ │ │ │ │ ├── wineglass.png │ │ │ │ │ │ │ ├── woman.png │ │ │ │ │ │ │ ├── wrench.png │ │ │ │ │ │ │ └── xbox.png │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── _ionicons-font.scss │ │ │ │ │ │ ├── _ionicons-icons.scss │ │ │ │ │ │ ├── _ionicons-variables.scss │ │ │ │ │ │ └── ionicons.scss │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── alert-circled.svg │ │ │ │ │ │ ├── alert.svg │ │ │ │ │ │ ├── android-add-circle.svg │ │ │ │ │ │ ├── android-add.svg │ │ │ │ │ │ ├── android-alarm-clock.svg │ │ │ │ │ │ ├── android-alert.svg │ │ │ │ │ │ ├── android-apps.svg │ │ │ │ │ │ ├── android-archive.svg │ │ │ │ │ │ ├── android-arrow-back.svg │ │ │ │ │ │ ├── android-arrow-down.svg │ │ │ │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ │ │ │ ├── android-arrow-dropdown.svg │ │ │ │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ │ │ │ ├── android-arrow-dropleft.svg │ │ │ │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ │ │ │ ├── android-arrow-dropright.svg │ │ │ │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ │ │ │ ├── android-arrow-dropup.svg │ │ │ │ │ │ ├── android-arrow-forward.svg │ │ │ │ │ │ ├── android-arrow-up.svg │ │ │ │ │ │ ├── android-attach.svg │ │ │ │ │ │ ├── android-bar.svg │ │ │ │ │ │ ├── android-bicycle.svg │ │ │ │ │ │ ├── android-boat.svg │ │ │ │ │ │ ├── android-bookmark.svg │ │ │ │ │ │ ├── android-bulb.svg │ │ │ │ │ │ ├── android-bus.svg │ │ │ │ │ │ ├── android-calendar.svg │ │ │ │ │ │ ├── android-call.svg │ │ │ │ │ │ ├── android-camera.svg │ │ │ │ │ │ ├── android-cancel.svg │ │ │ │ │ │ ├── android-car.svg │ │ │ │ │ │ ├── android-cart.svg │ │ │ │ │ │ ├── android-chat.svg │ │ │ │ │ │ ├── android-checkbox-blank.svg │ │ │ │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ │ │ │ ├── android-checkbox-outline.svg │ │ │ │ │ │ ├── android-checkbox.svg │ │ │ │ │ │ ├── android-checkmark-circle.svg │ │ │ │ │ │ ├── android-clipboard.svg │ │ │ │ │ │ ├── android-close.svg │ │ │ │ │ │ ├── android-cloud-circle.svg │ │ │ │ │ │ ├── android-cloud-done.svg │ │ │ │ │ │ ├── android-cloud-outline.svg │ │ │ │ │ │ ├── android-cloud.svg │ │ │ │ │ │ ├── android-color-palette.svg │ │ │ │ │ │ ├── android-compass.svg │ │ │ │ │ │ ├── android-contact.svg │ │ │ │ │ │ ├── android-contacts.svg │ │ │ │ │ │ ├── android-contract.svg │ │ │ │ │ │ ├── android-create.svg │ │ │ │ │ │ ├── android-delete.svg │ │ │ │ │ │ ├── android-desktop.svg │ │ │ │ │ │ ├── android-document.svg │ │ │ │ │ │ ├── android-done-all.svg │ │ │ │ │ │ ├── android-done.svg │ │ │ │ │ │ ├── android-download.svg │ │ │ │ │ │ ├── android-drafts.svg │ │ │ │ │ │ ├── android-exit.svg │ │ │ │ │ │ ├── android-expand.svg │ │ │ │ │ │ ├── android-favorite-outline.svg │ │ │ │ │ │ ├── android-favorite.svg │ │ │ │ │ │ ├── android-film.svg │ │ │ │ │ │ ├── android-folder-open.svg │ │ │ │ │ │ ├── android-folder.svg │ │ │ │ │ │ ├── android-funnel.svg │ │ │ │ │ │ ├── android-globe.svg │ │ │ │ │ │ ├── android-hand.svg │ │ │ │ │ │ ├── android-hangout.svg │ │ │ │ │ │ ├── android-happy.svg │ │ │ │ │ │ ├── android-home.svg │ │ │ │ │ │ ├── android-image.svg │ │ │ │ │ │ ├── android-laptop.svg │ │ │ │ │ │ ├── android-list.svg │ │ │ │ │ │ ├── android-locate.svg │ │ │ │ │ │ ├── android-lock.svg │ │ │ │ │ │ ├── android-mail.svg │ │ │ │ │ │ ├── android-map.svg │ │ │ │ │ │ ├── android-menu.svg │ │ │ │ │ │ ├── android-microphone-off.svg │ │ │ │ │ │ ├── android-microphone.svg │ │ │ │ │ │ ├── android-more-horizontal.svg │ │ │ │ │ │ ├── android-more-vertical.svg │ │ │ │ │ │ ├── android-navigate.svg │ │ │ │ │ │ ├── android-notifications-none.svg │ │ │ │ │ │ ├── android-notifications-off.svg │ │ │ │ │ │ ├── android-notifications.svg │ │ │ │ │ │ ├── android-open.svg │ │ │ │ │ │ ├── android-options.svg │ │ │ │ │ │ ├── android-people.svg │ │ │ │ │ │ ├── android-person-add.svg │ │ │ │ │ │ ├── android-person.svg │ │ │ │ │ │ ├── android-phone-landscape.svg │ │ │ │ │ │ ├── android-phone-portrait.svg │ │ │ │ │ │ ├── android-pin.svg │ │ │ │ │ │ ├── android-plane.svg │ │ │ │ │ │ ├── android-playstore.svg │ │ │ │ │ │ ├── android-print.svg │ │ │ │ │ │ ├── android-radio-button-off.svg │ │ │ │ │ │ ├── android-radio-button-on.svg │ │ │ │ │ │ ├── android-refresh.svg │ │ │ │ │ │ ├── android-remove-circle.svg │ │ │ │ │ │ ├── android-remove.svg │ │ │ │ │ │ ├── android-restaurant.svg │ │ │ │ │ │ ├── android-sad.svg │ │ │ │ │ │ ├── android-search.svg │ │ │ │ │ │ ├── android-send.svg │ │ │ │ │ │ ├── android-settings.svg │ │ │ │ │ │ ├── android-share-alt.svg │ │ │ │ │ │ ├── android-share.svg │ │ │ │ │ │ ├── android-star-half.svg │ │ │ │ │ │ ├── android-star-outline.svg │ │ │ │ │ │ ├── android-star.svg │ │ │ │ │ │ ├── android-stopwatch.svg │ │ │ │ │ │ ├── android-subway.svg │ │ │ │ │ │ ├── android-sunny.svg │ │ │ │ │ │ ├── android-sync.svg │ │ │ │ │ │ ├── android-textsms.svg │ │ │ │ │ │ ├── android-time.svg │ │ │ │ │ │ ├── android-train.svg │ │ │ │ │ │ ├── android-unlock.svg │ │ │ │ │ │ ├── android-upload.svg │ │ │ │ │ │ ├── android-volume-down.svg │ │ │ │ │ │ ├── android-volume-mute.svg │ │ │ │ │ │ ├── android-volume-off.svg │ │ │ │ │ │ ├── android-volume-up.svg │ │ │ │ │ │ ├── android-walk.svg │ │ │ │ │ │ ├── android-warning.svg │ │ │ │ │ │ ├── android-watch.svg │ │ │ │ │ │ ├── android-wifi.svg │ │ │ │ │ │ ├── aperture.svg │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ ├── arrow-down-a.svg │ │ │ │ │ │ ├── arrow-down-b.svg │ │ │ │ │ │ ├── arrow-down-c.svg │ │ │ │ │ │ ├── arrow-expand.svg │ │ │ │ │ │ ├── arrow-graph-down-left.svg │ │ │ │ │ │ ├── arrow-graph-down-right.svg │ │ │ │ │ │ ├── arrow-graph-up-left.svg │ │ │ │ │ │ ├── arrow-graph-up-right.svg │ │ │ │ │ │ ├── arrow-left-a.svg │ │ │ │ │ │ ├── arrow-left-b.svg │ │ │ │ │ │ ├── arrow-left-c.svg │ │ │ │ │ │ ├── arrow-move.svg │ │ │ │ │ │ ├── arrow-resize.svg │ │ │ │ │ │ ├── arrow-return-left.svg │ │ │ │ │ │ ├── arrow-return-right.svg │ │ │ │ │ │ ├── arrow-right-a.svg │ │ │ │ │ │ ├── arrow-right-b.svg │ │ │ │ │ │ ├── arrow-right-c.svg │ │ │ │ │ │ ├── arrow-shrink.svg │ │ │ │ │ │ ├── arrow-swap.svg │ │ │ │ │ │ ├── arrow-up-a.svg │ │ │ │ │ │ ├── arrow-up-b.svg │ │ │ │ │ │ ├── arrow-up-c.svg │ │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ │ ├── at.svg │ │ │ │ │ │ ├── backspace-outline.svg │ │ │ │ │ │ ├── backspace.svg │ │ │ │ │ │ ├── bag.svg │ │ │ │ │ │ ├── battery-charging.svg │ │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ │ ├── battery-low.svg │ │ │ │ │ │ ├── beaker.svg │ │ │ │ │ │ ├── beer.svg │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ ├── bonfire.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── bowtie.svg │ │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ ├── calculator.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ ├── card.svg │ │ │ │ │ │ ├── cash.svg │ │ │ │ │ │ ├── chatbox-working.svg │ │ │ │ │ │ ├── chatbox.svg │ │ │ │ │ │ ├── chatboxes.svg │ │ │ │ │ │ ├── chatbubble-working.svg │ │ │ │ │ │ ├── chatbubble.svg │ │ │ │ │ │ ├── chatbubbles.svg │ │ │ │ │ │ ├── checkmark-circled.svg │ │ │ │ │ │ ├── checkmark-round.svg │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── close-circled.svg │ │ │ │ │ │ ├── close-round.svg │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ │ ├── cloud.svg │ │ │ │ │ │ ├── code-download.svg │ │ │ │ │ │ ├── code-working.svg │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ ├── coffee.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── compose.svg │ │ │ │ │ │ ├── connection-bars.svg │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ ├── crop.svg │ │ │ │ │ │ ├── cube.svg │ │ │ │ │ │ ├── disc.svg │ │ │ │ │ │ ├── document-text.svg │ │ │ │ │ │ ├── document.svg │ │ │ │ │ │ ├── drag.svg │ │ │ │ │ │ ├── earth.svg │ │ │ │ │ │ ├── easel.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── egg.svg │ │ │ │ │ │ ├── eject.svg │ │ │ │ │ │ ├── email-unread.svg │ │ │ │ │ │ ├── email.svg │ │ │ │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ │ │ │ ├── erlenmeyer-flask.svg │ │ │ │ │ │ ├── eye-disabled.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── female.svg │ │ │ │ │ │ ├── filing.svg │ │ │ │ │ │ ├── film-marker.svg │ │ │ │ │ │ ├── fireball.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flame.svg │ │ │ │ │ │ ├── flash-off.svg │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── fork-repo.svg │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── funnel.svg │ │ │ │ │ │ ├── gear-a.svg │ │ │ │ │ │ ├── gear-b.svg │ │ │ │ │ │ ├── grid.svg │ │ │ │ │ │ ├── hammer.svg │ │ │ │ │ │ ├── happy-outline.svg │ │ │ │ │ │ ├── happy.svg │ │ │ │ │ │ ├── headphone.svg │ │ │ │ │ │ ├── heart-broken.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── help-buoy.svg │ │ │ │ │ │ ├── help-circled.svg │ │ │ │ │ │ ├── help.svg │ │ │ │ │ │ ├── home.svg │ │ │ │ │ │ ├── icecream.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── information-circled.svg │ │ │ │ │ │ ├── information.svg │ │ │ │ │ │ ├── ionic.svg │ │ │ │ │ │ ├── ios-alarm-outline.svg │ │ │ │ │ │ ├── ios-alarm.svg │ │ │ │ │ │ ├── ios-albums-outline.svg │ │ │ │ │ │ ├── ios-albums.svg │ │ │ │ │ │ ├── ios-americanfootball-outline.svg │ │ │ │ │ │ ├── ios-americanfootball.svg │ │ │ │ │ │ ├── ios-analytics-outline.svg │ │ │ │ │ │ ├── ios-analytics.svg │ │ │ │ │ │ ├── ios-arrow-back.svg │ │ │ │ │ │ ├── ios-arrow-down.svg │ │ │ │ │ │ ├── ios-arrow-forward.svg │ │ │ │ │ │ ├── ios-arrow-left.svg │ │ │ │ │ │ ├── ios-arrow-right.svg │ │ │ │ │ │ ├── ios-arrow-thin-down.svg │ │ │ │ │ │ ├── ios-arrow-thin-left.svg │ │ │ │ │ │ ├── ios-arrow-thin-right.svg │ │ │ │ │ │ ├── ios-arrow-thin-up.svg │ │ │ │ │ │ ├── ios-arrow-up.svg │ │ │ │ │ │ ├── ios-at-outline.svg │ │ │ │ │ │ ├── ios-at.svg │ │ │ │ │ │ ├── ios-barcode-outline.svg │ │ │ │ │ │ ├── ios-barcode.svg │ │ │ │ │ │ ├── ios-baseball-outline.svg │ │ │ │ │ │ ├── ios-baseball.svg │ │ │ │ │ │ ├── ios-basketball-outline.svg │ │ │ │ │ │ ├── ios-basketball.svg │ │ │ │ │ │ ├── ios-bell-outline.svg │ │ │ │ │ │ ├── ios-bell.svg │ │ │ │ │ │ ├── ios-body-outline.svg │ │ │ │ │ │ ├── ios-body.svg │ │ │ │ │ │ ├── ios-bolt-outline.svg │ │ │ │ │ │ ├── ios-bolt.svg │ │ │ │ │ │ ├── ios-book-outline.svg │ │ │ │ │ │ ├── ios-book.svg │ │ │ │ │ │ ├── ios-bookmarks-outline.svg │ │ │ │ │ │ ├── ios-bookmarks.svg │ │ │ │ │ │ ├── ios-box-outline.svg │ │ │ │ │ │ ├── ios-box.svg │ │ │ │ │ │ ├── ios-briefcase-outline.svg │ │ │ │ │ │ ├── ios-briefcase.svg │ │ │ │ │ │ ├── ios-browsers-outline.svg │ │ │ │ │ │ ├── ios-browsers.svg │ │ │ │ │ │ ├── ios-calculator-outline.svg │ │ │ │ │ │ ├── ios-calculator.svg │ │ │ │ │ │ ├── ios-calendar-outline.svg │ │ │ │ │ │ ├── ios-calendar.svg │ │ │ │ │ │ ├── ios-camera-outline.svg │ │ │ │ │ │ ├── ios-camera.svg │ │ │ │ │ │ ├── ios-cart-outline.svg │ │ │ │ │ │ ├── ios-cart.svg │ │ │ │ │ │ ├── ios-chatboxes-outline.svg │ │ │ │ │ │ ├── ios-chatboxes.svg │ │ │ │ │ │ ├── ios-chatbubble-outline.svg │ │ │ │ │ │ ├── ios-chatbubble.svg │ │ │ │ │ │ ├── ios-checkmark-empty.svg │ │ │ │ │ │ ├── ios-checkmark-outline.svg │ │ │ │ │ │ ├── ios-checkmark.svg │ │ │ │ │ │ ├── ios-circle-filled.svg │ │ │ │ │ │ ├── ios-circle-outline.svg │ │ │ │ │ │ ├── ios-clock-outline.svg │ │ │ │ │ │ ├── ios-clock.svg │ │ │ │ │ │ ├── ios-close-empty.svg │ │ │ │ │ │ ├── ios-close-outline.svg │ │ │ │ │ │ ├── ios-close.svg │ │ │ │ │ │ ├── ios-cloud-download-outline.svg │ │ │ │ │ │ ├── ios-cloud-download.svg │ │ │ │ │ │ ├── ios-cloud-outline.svg │ │ │ │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ │ │ │ ├── ios-cloud-upload.svg │ │ │ │ │ │ ├── ios-cloud.svg │ │ │ │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ │ │ │ ├── ios-cloudy-night.svg │ │ │ │ │ │ ├── ios-cloudy-outline.svg │ │ │ │ │ │ ├── ios-cloudy.svg │ │ │ │ │ │ ├── ios-cog-outline.svg │ │ │ │ │ │ ├── ios-cog.svg │ │ │ │ │ │ ├── ios-color-filter-outline.svg │ │ │ │ │ │ ├── ios-color-filter.svg │ │ │ │ │ │ ├── ios-color-wand-outline.svg │ │ │ │ │ │ ├── ios-color-wand.svg │ │ │ │ │ │ ├── ios-compose-outline.svg │ │ │ │ │ │ ├── ios-compose.svg │ │ │ │ │ │ ├── ios-contact-outline.svg │ │ │ │ │ │ ├── ios-contact.svg │ │ │ │ │ │ ├── ios-copy-outline.svg │ │ │ │ │ │ ├── ios-copy.svg │ │ │ │ │ │ ├── ios-crop-strong.svg │ │ │ │ │ │ ├── ios-crop.svg │ │ │ │ │ │ ├── ios-download-outline.svg │ │ │ │ │ │ ├── ios-download.svg │ │ │ │ │ │ ├── ios-drag.svg │ │ │ │ │ │ ├── ios-email-outline.svg │ │ │ │ │ │ ├── ios-email.svg │ │ │ │ │ │ ├── ios-eye-outline.svg │ │ │ │ │ │ ├── ios-eye.svg │ │ │ │ │ │ ├── ios-fastforward-outline.svg │ │ │ │ │ │ ├── ios-fastforward.svg │ │ │ │ │ │ ├── ios-filing-outline.svg │ │ │ │ │ │ ├── ios-filing.svg │ │ │ │ │ │ ├── ios-film-outline.svg │ │ │ │ │ │ ├── ios-film.svg │ │ │ │ │ │ ├── ios-flag-outline.svg │ │ │ │ │ │ ├── ios-flag.svg │ │ │ │ │ │ ├── ios-flame-outline.svg │ │ │ │ │ │ ├── ios-flame.svg │ │ │ │ │ │ ├── ios-flask-outline.svg │ │ │ │ │ │ ├── ios-flask.svg │ │ │ │ │ │ ├── ios-flower-outline.svg │ │ │ │ │ │ ├── ios-flower.svg │ │ │ │ │ │ ├── ios-folder-outline.svg │ │ │ │ │ │ ├── ios-folder.svg │ │ │ │ │ │ ├── ios-football-outline.svg │ │ │ │ │ │ ├── ios-football.svg │ │ │ │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ │ │ │ ├── ios-game-controller-a.svg │ │ │ │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ │ │ │ ├── ios-game-controller-b.svg │ │ │ │ │ │ ├── ios-gear-outline.svg │ │ │ │ │ │ ├── ios-gear.svg │ │ │ │ │ │ ├── ios-glasses-outline.svg │ │ │ │ │ │ ├── ios-glasses.svg │ │ │ │ │ │ ├── ios-grid-view-outline.svg │ │ │ │ │ │ ├── ios-grid-view.svg │ │ │ │ │ │ ├── ios-heart-outline.svg │ │ │ │ │ │ ├── ios-heart.svg │ │ │ │ │ │ ├── ios-help-empty.svg │ │ │ │ │ │ ├── ios-help-outline.svg │ │ │ │ │ │ ├── ios-help.svg │ │ │ │ │ │ ├── ios-home-outline.svg │ │ │ │ │ │ ├── ios-home.svg │ │ │ │ │ │ ├── ios-infinite-outline.svg │ │ │ │ │ │ ├── ios-infinite.svg │ │ │ │ │ │ ├── ios-information-empty.svg │ │ │ │ │ │ ├── ios-information-outline.svg │ │ │ │ │ │ ├── ios-information.svg │ │ │ │ │ │ ├── ios-ionic-outline.svg │ │ │ │ │ │ ├── ios-keypad-outline.svg │ │ │ │ │ │ ├── ios-keypad.svg │ │ │ │ │ │ ├── ios-lightbulb-outline.svg │ │ │ │ │ │ ├── ios-lightbulb.svg │ │ │ │ │ │ ├── ios-list-outline.svg │ │ │ │ │ │ ├── ios-list.svg │ │ │ │ │ │ ├── ios-location-outline.svg │ │ │ │ │ │ ├── ios-location.svg │ │ │ │ │ │ ├── ios-locked-outline.svg │ │ │ │ │ │ ├── ios-locked.svg │ │ │ │ │ │ ├── ios-loop-strong.svg │ │ │ │ │ │ ├── ios-loop.svg │ │ │ │ │ │ ├── ios-medical-outline.svg │ │ │ │ │ │ ├── ios-medical.svg │ │ │ │ │ │ ├── ios-medkit-outline.svg │ │ │ │ │ │ ├── ios-medkit.svg │ │ │ │ │ │ ├── ios-mic-off.svg │ │ │ │ │ │ ├── ios-mic-outline.svg │ │ │ │ │ │ ├── ios-mic.svg │ │ │ │ │ │ ├── ios-minus-empty.svg │ │ │ │ │ │ ├── ios-minus-outline.svg │ │ │ │ │ │ ├── ios-minus.svg │ │ │ │ │ │ ├── ios-monitor-outline.svg │ │ │ │ │ │ ├── ios-monitor.svg │ │ │ │ │ │ ├── ios-moon-outline.svg │ │ │ │ │ │ ├── ios-moon.svg │ │ │ │ │ │ ├── ios-more-outline.svg │ │ │ │ │ │ ├── ios-more.svg │ │ │ │ │ │ ├── ios-musical-note.svg │ │ │ │ │ │ ├── ios-musical-notes.svg │ │ │ │ │ │ ├── ios-navigate-outline.svg │ │ │ │ │ │ ├── ios-navigate.svg │ │ │ │ │ │ ├── ios-nutrition-outline.svg │ │ │ │ │ │ ├── ios-nutrition.svg │ │ │ │ │ │ ├── ios-paper-outline.svg │ │ │ │ │ │ ├── ios-paper.svg │ │ │ │ │ │ ├── ios-paperplane-outline.svg │ │ │ │ │ │ ├── ios-paperplane.svg │ │ │ │ │ │ ├── ios-partlysunny-outline.svg │ │ │ │ │ │ ├── ios-partlysunny.svg │ │ │ │ │ │ ├── ios-pause-outline.svg │ │ │ │ │ │ ├── ios-pause.svg │ │ │ │ │ │ ├── ios-paw-outline.svg │ │ │ │ │ │ ├── ios-paw.svg │ │ │ │ │ │ ├── ios-people-outline.svg │ │ │ │ │ │ ├── ios-people.svg │ │ │ │ │ │ ├── ios-person-outline.svg │ │ │ │ │ │ ├── ios-person.svg │ │ │ │ │ │ ├── ios-personadd-outline.svg │ │ │ │ │ │ ├── ios-personadd.svg │ │ │ │ │ │ ├── ios-photos-outline.svg │ │ │ │ │ │ ├── ios-photos.svg │ │ │ │ │ │ ├── ios-pie-outline.svg │ │ │ │ │ │ ├── ios-pie.svg │ │ │ │ │ │ ├── ios-pint-outline.svg │ │ │ │ │ │ ├── ios-pint.svg │ │ │ │ │ │ ├── ios-play-outline.svg │ │ │ │ │ │ ├── ios-play.svg │ │ │ │ │ │ ├── ios-plus-empty.svg │ │ │ │ │ │ ├── ios-plus-outline.svg │ │ │ │ │ │ ├── ios-plus.svg │ │ │ │ │ │ ├── ios-pricetag-outline.svg │ │ │ │ │ │ ├── ios-pricetag.svg │ │ │ │ │ │ ├── ios-pricetags-outline.svg │ │ │ │ │ │ ├── ios-pricetags.svg │ │ │ │ │ │ ├── ios-printer-outline.svg │ │ │ │ │ │ ├── ios-printer.svg │ │ │ │ │ │ ├── ios-pulse-strong.svg │ │ │ │ │ │ ├── ios-pulse.svg │ │ │ │ │ │ ├── ios-rainy-outline.svg │ │ │ │ │ │ ├── ios-rainy.svg │ │ │ │ │ │ ├── ios-recording-outline.svg │ │ │ │ │ │ ├── ios-recording.svg │ │ │ │ │ │ ├── ios-redo-outline.svg │ │ │ │ │ │ ├── ios-redo.svg │ │ │ │ │ │ ├── ios-refresh-empty.svg │ │ │ │ │ │ ├── ios-refresh-outline.svg │ │ │ │ │ │ ├── ios-refresh.svg │ │ │ │ │ │ ├── ios-reload.svg │ │ │ │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ │ │ │ ├── ios-reverse-camera.svg │ │ │ │ │ │ ├── ios-rewind-outline.svg │ │ │ │ │ │ ├── ios-rewind.svg │ │ │ │ │ │ ├── ios-rose-outline.svg │ │ │ │ │ │ ├── ios-rose.svg │ │ │ │ │ │ ├── ios-search-strong.svg │ │ │ │ │ │ ├── ios-search.svg │ │ │ │ │ │ ├── ios-settings-strong.svg │ │ │ │ │ │ ├── ios-settings.svg │ │ │ │ │ │ ├── ios-shuffle-strong.svg │ │ │ │ │ │ ├── ios-shuffle.svg │ │ │ │ │ │ ├── ios-skipbackward-outline.svg │ │ │ │ │ │ ├── ios-skipbackward.svg │ │ │ │ │ │ ├── ios-skipforward-outline.svg │ │ │ │ │ │ ├── ios-skipforward.svg │ │ │ │ │ │ ├── ios-snowy.svg │ │ │ │ │ │ ├── ios-speedometer-outline.svg │ │ │ │ │ │ ├── ios-speedometer.svg │ │ │ │ │ │ ├── ios-star-half.svg │ │ │ │ │ │ ├── ios-star-outline.svg │ │ │ │ │ │ ├── ios-star.svg │ │ │ │ │ │ ├── ios-stopwatch-outline.svg │ │ │ │ │ │ ├── ios-stopwatch.svg │ │ │ │ │ │ ├── ios-sunny-outline.svg │ │ │ │ │ │ ├── ios-sunny.svg │ │ │ │ │ │ ├── ios-telephone-outline.svg │ │ │ │ │ │ ├── ios-telephone.svg │ │ │ │ │ │ ├── ios-tennisball-outline.svg │ │ │ │ │ │ ├── ios-tennisball.svg │ │ │ │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ │ │ │ ├── ios-thunderstorm.svg │ │ │ │ │ │ ├── ios-time-outline.svg │ │ │ │ │ │ ├── ios-time.svg │ │ │ │ │ │ ├── ios-timer-outline.svg │ │ │ │ │ │ ├── ios-timer.svg │ │ │ │ │ │ ├── ios-toggle-outline.svg │ │ │ │ │ │ ├── ios-toggle.svg │ │ │ │ │ │ ├── ios-trash-outline.svg │ │ │ │ │ │ ├── ios-trash.svg │ │ │ │ │ │ ├── ios-undo-outline.svg │ │ │ │ │ │ ├── ios-undo.svg │ │ │ │ │ │ ├── ios-unlocked-outline.svg │ │ │ │ │ │ ├── ios-unlocked.svg │ │ │ │ │ │ ├── ios-upload-outline.svg │ │ │ │ │ │ ├── ios-upload.svg │ │ │ │ │ │ ├── ios-videocam-outline.svg │ │ │ │ │ │ ├── ios-videocam.svg │ │ │ │ │ │ ├── ios-volume-high.svg │ │ │ │ │ │ ├── ios-volume-low.svg │ │ │ │ │ │ ├── ios-wineglass-outline.svg │ │ │ │ │ │ ├── ios-wineglass.svg │ │ │ │ │ │ ├── ios-world-outline.svg │ │ │ │ │ │ ├── ios-world.svg │ │ │ │ │ │ ├── ipad.svg │ │ │ │ │ │ ├── iphone.svg │ │ │ │ │ │ ├── ipod.svg │ │ │ │ │ │ ├── jet.svg │ │ │ │ │ │ ├── key.svg │ │ │ │ │ │ ├── knife.svg │ │ │ │ │ │ ├── laptop.svg │ │ │ │ │ │ ├── leaf.svg │ │ │ │ │ │ ├── levels.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ ├── load-a.svg │ │ │ │ │ │ ├── load-b.svg │ │ │ │ │ │ ├── load-c.svg │ │ │ │ │ │ ├── load-d.svg │ │ │ │ │ │ ├── location.svg │ │ │ │ │ │ ├── lock-combination.svg │ │ │ │ │ │ ├── locked.svg │ │ │ │ │ │ ├── log-in.svg │ │ │ │ │ │ ├── log-out.svg │ │ │ │ │ │ ├── loop.svg │ │ │ │ │ │ ├── magnet.svg │ │ │ │ │ │ ├── male.svg │ │ │ │ │ │ ├── man.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── medkit.svg │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ ├── mic-a.svg │ │ │ │ │ │ ├── mic-b.svg │ │ │ │ │ │ ├── mic-c.svg │ │ │ │ │ │ ├── minus-circled.svg │ │ │ │ │ │ ├── minus-round.svg │ │ │ │ │ │ ├── minus.svg │ │ │ │ │ │ ├── model-s.svg │ │ │ │ │ │ ├── monitor.svg │ │ │ │ │ │ ├── more.svg │ │ │ │ │ │ ├── mouse.svg │ │ │ │ │ │ ├── music-note.svg │ │ │ │ │ │ ├── navicon-round.svg │ │ │ │ │ │ ├── navicon.svg │ │ │ │ │ │ ├── navigate.svg │ │ │ │ │ │ ├── network.svg │ │ │ │ │ │ ├── no-smoking.svg │ │ │ │ │ │ ├── nuclear.svg │ │ │ │ │ │ ├── outlet.svg │ │ │ │ │ │ ├── paintbrush.svg │ │ │ │ │ │ ├── paintbucket.svg │ │ │ │ │ │ ├── paper-airplane.svg │ │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ │ ├── pause.svg │ │ │ │ │ │ ├── person-add.svg │ │ │ │ │ │ ├── person-stalker.svg │ │ │ │ │ │ ├── person.svg │ │ │ │ │ │ ├── pie-graph.svg │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ ├── pinpoint.svg │ │ │ │ │ │ ├── pizza.svg │ │ │ │ │ │ ├── plane.svg │ │ │ │ │ │ ├── planet.svg │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ ├── plus-circled.svg │ │ │ │ │ │ ├── plus-round.svg │ │ │ │ │ │ ├── plus.svg │ │ │ │ │ │ ├── podium.svg │ │ │ │ │ │ ├── pound.svg │ │ │ │ │ │ ├── power.svg │ │ │ │ │ │ ├── pricetag.svg │ │ │ │ │ │ ├── pricetags.svg │ │ │ │ │ │ ├── printer.svg │ │ │ │ │ │ ├── pull-request.svg │ │ │ │ │ │ ├── qr-scanner.svg │ │ │ │ │ │ ├── quote.svg │ │ │ │ │ │ ├── radio-waves.svg │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ ├── refresh.svg │ │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ │ ├── reply.svg │ │ │ │ │ │ ├── ribbon-a.svg │ │ │ │ │ │ ├── ribbon-b.svg │ │ │ │ │ │ ├── sad-outline.svg │ │ │ │ │ │ ├── sad.svg │ │ │ │ │ │ ├── scissors.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ ├── share.svg │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ ├── skip-backward.svg │ │ │ │ │ │ ├── skip-forward.svg │ │ │ │ │ │ ├── social-android-outline.svg │ │ │ │ │ │ ├── social-android.svg │ │ │ │ │ │ ├── social-angular-outline.svg │ │ │ │ │ │ ├── social-angular.svg │ │ │ │ │ │ ├── social-apple-outline.svg │ │ │ │ │ │ ├── social-apple.svg │ │ │ │ │ │ ├── social-bitcoin-outline.svg │ │ │ │ │ │ ├── social-bitcoin.svg │ │ │ │ │ │ ├── social-buffer-outline.svg │ │ │ │ │ │ ├── social-buffer.svg │ │ │ │ │ │ ├── social-chrome-outline.svg │ │ │ │ │ │ ├── social-chrome.svg │ │ │ │ │ │ ├── social-codepen-outline.svg │ │ │ │ │ │ ├── social-codepen.svg │ │ │ │ │ │ ├── social-css3-outline.svg │ │ │ │ │ │ ├── social-css3.svg │ │ │ │ │ │ ├── social-designernews-outline.svg │ │ │ │ │ │ ├── social-designernews.svg │ │ │ │ │ │ ├── social-dribbble-outline.svg │ │ │ │ │ │ ├── social-dribbble.svg │ │ │ │ │ │ ├── social-dropbox-outline.svg │ │ │ │ │ │ ├── social-dropbox.svg │ │ │ │ │ │ ├── social-euro-outline.svg │ │ │ │ │ │ ├── social-euro.svg │ │ │ │ │ │ ├── social-facebook-outline.svg │ │ │ │ │ │ ├── social-facebook.svg │ │ │ │ │ │ ├── social-foursquare-outline.svg │ │ │ │ │ │ ├── social-foursquare.svg │ │ │ │ │ │ ├── social-freebsd-devil.svg │ │ │ │ │ │ ├── social-github-outline.svg │ │ │ │ │ │ ├── social-github.svg │ │ │ │ │ │ ├── social-google-outline.svg │ │ │ │ │ │ ├── social-google.svg │ │ │ │ │ │ ├── social-googleplus-outline.svg │ │ │ │ │ │ ├── social-googleplus.svg │ │ │ │ │ │ ├── social-hackernews-outline.svg │ │ │ │ │ │ ├── social-hackernews.svg │ │ │ │ │ │ ├── social-html5-outline.svg │ │ │ │ │ │ ├── social-html5.svg │ │ │ │ │ │ ├── social-instagram-outline.svg │ │ │ │ │ │ ├── social-instagram.svg │ │ │ │ │ │ ├── social-javascript-outline.svg │ │ │ │ │ │ ├── social-javascript.svg │ │ │ │ │ │ ├── social-linkedin-outline.svg │ │ │ │ │ │ ├── social-linkedin.svg │ │ │ │ │ │ ├── social-markdown.svg │ │ │ │ │ │ ├── social-nodejs.svg │ │ │ │ │ │ ├── social-octocat.svg │ │ │ │ │ │ ├── social-pinterest-outline.svg │ │ │ │ │ │ ├── social-pinterest.svg │ │ │ │ │ │ ├── social-python.svg │ │ │ │ │ │ ├── social-reddit-outline.svg │ │ │ │ │ │ ├── social-reddit.svg │ │ │ │ │ │ ├── social-rss-outline.svg │ │ │ │ │ │ ├── social-rss.svg │ │ │ │ │ │ ├── social-sass.svg │ │ │ │ │ │ ├── social-skype-outline.svg │ │ │ │ │ │ ├── social-skype.svg │ │ │ │ │ │ ├── social-snapchat-outline.svg │ │ │ │ │ │ ├── social-snapchat.svg │ │ │ │ │ │ ├── social-tumblr-outline.svg │ │ │ │ │ │ ├── social-tumblr.svg │ │ │ │ │ │ ├── social-tux.svg │ │ │ │ │ │ ├── social-twitch-outline.svg │ │ │ │ │ │ ├── social-twitch.svg │ │ │ │ │ │ ├── social-twitter-outline.svg │ │ │ │ │ │ ├── social-twitter.svg │ │ │ │ │ │ ├── social-usd-outline.svg │ │ │ │ │ │ ├── social-usd.svg │ │ │ │ │ │ ├── social-vimeo-outline.svg │ │ │ │ │ │ ├── social-vimeo.svg │ │ │ │ │ │ ├── social-whatsapp-outline.svg │ │ │ │ │ │ ├── social-whatsapp.svg │ │ │ │ │ │ ├── social-windows-outline.svg │ │ │ │ │ │ ├── social-windows.svg │ │ │ │ │ │ ├── social-wordpress-outline.svg │ │ │ │ │ │ ├── social-wordpress.svg │ │ │ │ │ │ ├── social-yahoo-outline.svg │ │ │ │ │ │ ├── social-yahoo.svg │ │ │ │ │ │ ├── social-yen-outline.svg │ │ │ │ │ │ ├── social-yen.svg │ │ │ │ │ │ ├── social-youtube-outline.svg │ │ │ │ │ │ ├── social-youtube.svg │ │ │ │ │ │ ├── soup-can-outline.svg │ │ │ │ │ │ ├── soup-can.svg │ │ │ │ │ │ ├── speakerphone.svg │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ ├── spoon.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── stats-bars.svg │ │ │ │ │ │ ├── steam.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ ├── thumbsdown.svg │ │ │ │ │ │ ├── thumbsup.svg │ │ │ │ │ │ ├── toggle-filled.svg │ │ │ │ │ │ ├── toggle.svg │ │ │ │ │ │ ├── transgender.svg │ │ │ │ │ │ ├── trash-a.svg │ │ │ │ │ │ ├── trash-b.svg │ │ │ │ │ │ ├── trophy.svg │ │ │ │ │ │ ├── tshirt-outline.svg │ │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ │ ├── university.svg │ │ │ │ │ │ ├── unlocked.svg │ │ │ │ │ │ ├── upload.svg │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ ├── videocamera.svg │ │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ │ ├── volume-medium.svg │ │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ │ ├── wand.svg │ │ │ │ │ │ ├── waterdrop.svg │ │ │ │ │ │ ├── wifi.svg │ │ │ │ │ │ ├── wineglass.svg │ │ │ │ │ │ ├── woman.svg │ │ │ │ │ │ ├── wrench.svg │ │ │ │ │ │ └── xbox.svg │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar04.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── Respond │ │ │ │ └── 1.4.2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── cross-domain │ │ │ │ │ ├── example.html │ │ │ │ │ ├── respond-proxy.html │ │ │ │ │ ├── respond.proxy.gif │ │ │ │ │ └── respond.proxy.js │ │ │ │ │ ├── dest │ │ │ │ │ ├── respond.matchmedia.addListener.min.js │ │ │ │ │ ├── respond.matchmedia.addListener.src.js │ │ │ │ │ ├── respond.min.js │ │ │ │ │ └── respond.src.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── matchmedia.addListener.js │ │ │ │ │ ├── matchmedia.polyfill.js │ │ │ │ │ └── respond.js │ │ │ │ │ └── test │ │ │ │ │ ├── test.css │ │ │ │ │ ├── test.html │ │ │ │ │ ├── test2.css │ │ │ │ │ └── unit │ │ │ │ │ ├── index.html │ │ │ │ │ ├── qunit │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ │ │ ├── test-with-keyframe.css │ │ │ │ │ ├── test.css │ │ │ │ │ ├── test2.css │ │ │ │ │ ├── test3.css │ │ │ │ │ └── tests.js │ │ │ │ ├── app.js │ │ │ │ ├── app.min.js │ │ │ │ ├── demo.js │ │ │ │ ├── demo_en.js │ │ │ │ ├── html5shiv │ │ │ │ └── 3.7.3 │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── MIT and GPL2 licenses.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── dist │ │ │ │ │ ├── html5shiv-printshiv.js │ │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ └── html5shiv.min.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── src │ │ │ │ │ ├── html5shiv-printshiv.js │ │ │ │ │ └── html5shiv.js │ │ │ │ │ └── test │ │ │ │ │ ├── data │ │ │ │ │ ├── body-crash.jpg │ │ │ │ │ ├── iframed-tests.html │ │ │ │ │ ├── inline-mixed-media.css │ │ │ │ │ ├── inline-print-media.css │ │ │ │ │ ├── no-print.css │ │ │ │ │ ├── paramtracer.swf │ │ │ │ │ ├── print-styles.css │ │ │ │ │ ├── print.css │ │ │ │ │ └── screen.css │ │ │ │ │ ├── highcharts │ │ │ │ │ ├── area-basic.html │ │ │ │ │ └── highcharts.js │ │ │ │ │ ├── html5shiv.html │ │ │ │ │ ├── iframe.1-1.html │ │ │ │ │ ├── iframe.1-2.html │ │ │ │ │ ├── iframe.1.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-1.7.1 │ │ │ │ │ ├── data │ │ │ │ │ │ ├── dashboard.xml │ │ │ │ │ │ ├── iframe.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ ├── testinit.js │ │ │ │ │ │ ├── testrunner.js │ │ │ │ │ │ ├── testsuite.css │ │ │ │ │ │ └── versioncheck.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── unit │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── manipulation.js │ │ │ │ │ │ └── traversing.js │ │ │ │ │ ├── mixed-test.html │ │ │ │ │ ├── object-test.html │ │ │ │ │ ├── perf.1.html │ │ │ │ │ ├── perf.2.html │ │ │ │ │ ├── qunit │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ │ │ ├── style.all.css │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.print.css │ │ │ │ │ └── unit │ │ │ │ │ └── tests.js │ │ │ │ ├── jquery-ui │ │ │ │ └── 1.11.4 │ │ │ │ │ ├── external │ │ │ │ │ └── jquery │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ │ └── jquery-ui.theme.min.css │ │ │ │ ├── moment │ │ │ │ └── 2.11.2 │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .jscs.json │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .spmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Moment.js.nuspec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmarks │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── fromDate.js │ │ │ │ │ ├── fromDateUtc.js │ │ │ │ │ ├── makeDuration.js │ │ │ │ │ └── zeroFill.js │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── component.json │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── ender.js │ │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh-tw.js │ │ │ │ │ ├── meteor │ │ │ │ │ ├── README.md │ │ │ │ │ ├── export.js │ │ │ │ │ ├── package.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── min │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── locales.min.js │ │ │ │ │ ├── moment-with-locales.js │ │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ │ ├── moment.min.js │ │ │ │ │ └── tests.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── package.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── scripts │ │ │ │ │ └── npm_prepublish.sh │ │ │ │ │ ├── src │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ │ │ ├── from-anything.js │ │ │ │ │ │ │ ├── from-array.js │ │ │ │ │ │ │ ├── from-object.js │ │ │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ │ │ ├── from-string.js │ │ │ │ │ │ │ ├── local.js │ │ │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ │ │ ├── utc.js │ │ │ │ │ │ │ └── valid.js │ │ │ │ │ │ ├── duration │ │ │ │ │ │ │ ├── abs.js │ │ │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ │ │ ├── as.js │ │ │ │ │ │ │ ├── bubble.js │ │ │ │ │ │ │ ├── constructor.js │ │ │ │ │ │ │ ├── create.js │ │ │ │ │ │ │ ├── duration.js │ │ │ │ │ │ │ ├── get.js │ │ │ │ │ │ │ ├── humanize.js │ │ │ │ │ │ │ ├── iso-string.js │ │ │ │ │ │ │ └── prototype.js │ │ │ │ │ │ ├── format │ │ │ │ │ │ │ └── format.js │ │ │ │ │ │ ├── locale │ │ │ │ │ │ │ ├── calendar.js │ │ │ │ │ │ │ ├── constructor.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── formats.js │ │ │ │ │ │ │ ├── invalid.js │ │ │ │ │ │ │ ├── lists.js │ │ │ │ │ │ │ ├── locale.js │ │ │ │ │ │ │ ├── locales.js │ │ │ │ │ │ │ ├── ordinal.js │ │ │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ │ │ ├── prototype.js │ │ │ │ │ │ │ ├── relative.js │ │ │ │ │ │ │ └── set.js │ │ │ │ │ │ ├── moment │ │ │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ │ │ ├── calendar.js │ │ │ │ │ │ │ ├── clone.js │ │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ │ ├── constructor.js │ │ │ │ │ │ │ ├── creation-data.js │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ ├── format.js │ │ │ │ │ │ │ ├── from.js │ │ │ │ │ │ │ ├── get-set.js │ │ │ │ │ │ │ ├── locale.js │ │ │ │ │ │ │ ├── min-max.js │ │ │ │ │ │ │ ├── moment.js │ │ │ │ │ │ │ ├── now.js │ │ │ │ │ │ │ ├── prototype.js │ │ │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ │ │ ├── to-type.js │ │ │ │ │ │ │ ├── to.js │ │ │ │ │ │ │ └── valid.js │ │ │ │ │ │ ├── parse │ │ │ │ │ │ │ ├── regex.js │ │ │ │ │ │ │ └── token.js │ │ │ │ │ │ ├── units │ │ │ │ │ │ │ ├── aliases.js │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ │ │ ├── hour.js │ │ │ │ │ │ │ ├── millisecond.js │ │ │ │ │ │ │ ├── minute.js │ │ │ │ │ │ │ ├── month.js │ │ │ │ │ │ │ ├── offset.js │ │ │ │ │ │ │ ├── quarter.js │ │ │ │ │ │ │ ├── second.js │ │ │ │ │ │ │ ├── timestamp.js │ │ │ │ │ │ │ ├── timezone.js │ │ │ │ │ │ │ ├── units.js │ │ │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ │ │ ├── week-year.js │ │ │ │ │ │ │ ├── week.js │ │ │ │ │ │ │ └── year.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ │ ├── deprecate.js │ │ │ │ │ │ │ ├── extend.js │ │ │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ │ │ ├── hooks.js │ │ │ │ │ │ │ ├── is-array.js │ │ │ │ │ │ │ ├── is-date.js │ │ │ │ │ │ │ ├── is-function.js │ │ │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ │ ├── to-int.js │ │ │ │ │ │ │ └── zero-fill.js │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bo.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cv.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-at.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── dv.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en-ie.js │ │ │ │ │ │ ├── en-nz.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fy.js │ │ │ │ │ │ ├── gd.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hy-am.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── jv.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lb.js │ │ │ │ │ │ ├── lo.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── me.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ml.js │ │ │ │ │ │ ├── mr.js │ │ │ │ │ │ ├── ms-my.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── my.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── ne.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── se.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sw.js │ │ │ │ │ │ ├── ta.js │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ │ ├── tlh.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tzl.js │ │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ │ ├── tzm.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uz.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh-tw.js │ │ │ │ │ ├── moment.js │ │ │ │ │ └── test │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── each.js │ │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bo.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cv.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-at.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── dv.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en-ie.js │ │ │ │ │ │ ├── en-nz.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fy.js │ │ │ │ │ │ ├── gd.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hy-am.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── jv.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lb.js │ │ │ │ │ │ ├── lo.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── me.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ml.js │ │ │ │ │ │ ├── mr.js │ │ │ │ │ │ ├── ms-my.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── my.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── ne.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── se.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sw.js │ │ │ │ │ │ ├── ta.js │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ │ ├── tlh.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tzl.js │ │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ │ ├── tzm.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uz.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh-tw.js │ │ │ │ │ │ ├── moment │ │ │ │ │ │ ├── add_subtract.js │ │ │ │ │ │ ├── calendar.js │ │ │ │ │ │ ├── create.js │ │ │ │ │ │ ├── creation-data.js │ │ │ │ │ │ ├── days_in_month.js │ │ │ │ │ │ ├── deprecate.js │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ ├── duration.js │ │ │ │ │ │ ├── duration_from_moments.js │ │ │ │ │ │ ├── format.js │ │ │ │ │ │ ├── from_to.js │ │ │ │ │ │ ├── getters_setters.js │ │ │ │ │ │ ├── instanceof.js │ │ │ │ │ │ ├── invalid.js │ │ │ │ │ │ ├── is_after.js │ │ │ │ │ │ ├── is_before.js │ │ │ │ │ │ ├── is_between.js │ │ │ │ │ │ ├── is_date.js │ │ │ │ │ │ ├── is_moment.js │ │ │ │ │ │ ├── is_same.js │ │ │ │ │ │ ├── is_same_or_after.js │ │ │ │ │ │ ├── is_same_or_before.js │ │ │ │ │ │ ├── is_valid.js │ │ │ │ │ │ ├── leapyear.js │ │ │ │ │ │ ├── listers.js │ │ │ │ │ │ ├── locale.js │ │ │ │ │ │ ├── min_max.js │ │ │ │ │ │ ├── mutable.js │ │ │ │ │ │ ├── normalize_units.js │ │ │ │ │ │ ├── now.js │ │ │ │ │ │ ├── parsing_flags.js │ │ │ │ │ │ ├── preparse_postformat.js │ │ │ │ │ │ ├── quarter.js │ │ │ │ │ │ ├── relative_time.js │ │ │ │ │ │ ├── start_end_of.js │ │ │ │ │ │ ├── string_prototype.js │ │ │ │ │ │ ├── to_type.js │ │ │ │ │ │ ├── utc.js │ │ │ │ │ │ ├── utc_offset.js │ │ │ │ │ │ ├── week_year.js │ │ │ │ │ │ ├── weekday.js │ │ │ │ │ │ ├── weeks.js │ │ │ │ │ │ ├── weeks_in_year.js │ │ │ │ │ │ ├── zone_switching.js │ │ │ │ │ │ └── zones.js │ │ │ │ │ │ └── qunit.js │ │ │ │ │ ├── tasks │ │ │ │ │ ├── bump_version.js │ │ │ │ │ ├── check_sauce_creds.js │ │ │ │ │ ├── component.js │ │ │ │ │ ├── embed_locales.js │ │ │ │ │ ├── history.js │ │ │ │ │ ├── nuget.js │ │ │ │ │ ├── qtest.js │ │ │ │ │ ├── size.js │ │ │ │ │ ├── transpile.js │ │ │ │ │ ├── update_index.js │ │ │ │ │ └── zones.js │ │ │ │ │ └── templates │ │ │ │ │ ├── amd-named.js │ │ │ │ │ ├── amd.js │ │ │ │ │ ├── default.js │ │ │ │ │ ├── globals.js │ │ │ │ │ ├── locale-header.js │ │ │ │ │ └── test-header.js │ │ │ │ ├── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ │ │ └── raphael │ │ │ │ └── 2.1.0 │ │ │ │ └── raphael-min.js │ │ ├── index.html │ │ ├── index2.html │ │ ├── package.json │ │ ├── pages │ │ │ ├── UI │ │ │ │ ├── buttons.html │ │ │ │ ├── general.html │ │ │ │ ├── icons.html │ │ │ │ ├── modals.html │ │ │ │ ├── sliders.html │ │ │ │ └── timeline.html │ │ │ ├── calendar.html │ │ │ ├── charts │ │ │ │ ├── chartjs.html │ │ │ │ ├── flot.html │ │ │ │ ├── inline.html │ │ │ │ └── morris.html │ │ │ ├── examples │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── blank.html │ │ │ │ ├── invoice-print.html │ │ │ │ ├── invoice.html │ │ │ │ ├── lockscreen.html │ │ │ │ ├── login.html │ │ │ │ ├── pace.html │ │ │ │ ├── profile.html │ │ │ │ └── register.html │ │ │ ├── forms │ │ │ │ ├── advanced.html │ │ │ │ ├── editors.html │ │ │ │ └── general.html │ │ │ ├── layout │ │ │ │ ├── boxed.html │ │ │ │ ├── collapsed-sidebar.html │ │ │ │ ├── fixed.html │ │ │ │ └── top-nav.html │ │ │ ├── mailbox │ │ │ │ ├── compose.html │ │ │ │ ├── mailbox.html │ │ │ │ └── read-mail.html │ │ │ ├── tables │ │ │ │ ├── data.html │ │ │ │ └── simple.html │ │ │ └── widgets.html │ │ ├── plugins │ │ │ ├── bootstrap-slider │ │ │ │ ├── bootstrap-slider.js │ │ │ │ └── slider.css │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ ├── chartjs │ │ │ │ ├── Chart.js │ │ │ │ └── Chart.min.js │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── image │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ ├── specialchar │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── tabletools │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ └── wsc │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── samples │ │ │ │ │ ├── css │ │ │ │ │ │ └── samples.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ ├── header-separator.png │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ └── navigation-tip.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ └── sf.js │ │ │ │ │ ├── old │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ ├── appendto.html │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ ├── divreplace.html │ │ │ │ │ │ ├── enterkey │ │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── inlineall.html │ │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ │ ├── jquery.html │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── magicline.html │ │ │ │ │ │ ├── readonly.html │ │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ │ ├── sample.css │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ │ ├── tabindex.html │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ │ ├── uicolor.html │ │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ │ └── toolbarconfigurator │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── fontello.css │ │ │ │ │ │ ├── font │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ ├── fontello.eot │ │ │ │ │ │ ├── fontello.svg │ │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ │ └── fontello.woff │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── codemirror │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ └── show-hint.js │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ │ └── readme.md │ │ │ │ └── styles.js │ │ │ ├── colorpicker │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ └── img │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── extensions │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ ├── ColVis │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ ├── Responsive │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ ├── Scroller │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ └── TableTools │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ └── swf │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── datepicker │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ ├── datepicker3.css │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ ├── daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ ├── daterangepicker.js │ │ │ │ ├── moment.js │ │ │ │ └── moment.min.js │ │ │ ├── fastclick │ │ │ │ ├── fastclick.js │ │ │ │ └── fastclick.min.js │ │ │ ├── flot │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.time.min.js │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── fullcalendar.js │ │ │ │ ├── fullcalendar.min.css │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── all.css │ │ │ │ ├── flat │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── flat.css │ │ │ │ │ ├── flat.png │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ │ ├── futurico.css │ │ │ │ │ ├── futurico.png │ │ │ │ │ └── futurico@2x.png │ │ │ │ ├── icheck.js │ │ │ │ ├── icheck.min.js │ │ │ │ ├── line │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── line.css │ │ │ │ │ ├── line.png │ │ │ │ │ ├── line@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── minimal │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── minimal.css │ │ │ │ │ ├── minimal.png │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ │ ├── polaris.css │ │ │ │ │ ├── polaris.png │ │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── square.css │ │ │ │ │ ├── square.png │ │ │ │ │ ├── square@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ ├── input-mask │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ └── phone-codes │ │ │ │ │ ├── phone-be.json │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ │ ├── img │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ ├── jQuery │ │ │ │ └── jquery-2.2.3.min.js │ │ │ ├── jQueryUI │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── knob │ │ │ │ └── jquery.knob.js │ │ │ ├── morris │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ ├── pace │ │ │ │ ├── pace.css │ │ │ │ ├── pace.js │ │ │ │ ├── pace.min.css │ │ │ │ └── pace.min.js │ │ │ ├── select2 │ │ │ │ ├── i18n │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.css │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ ├── select2.min.css │ │ │ │ └── select2.min.js │ │ │ ├── slimScroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── sparkline │ │ │ │ ├── jquery.sparkline.js │ │ │ │ └── jquery.sparkline.min.js │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ └── bootstrap-timepicker.min.js │ │ └── starter.html │ ├── amazeui │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.en.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE.md │ │ ├── README.en.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── components.json │ │ ├── dist │ │ │ ├── .gitkeep │ │ │ ├── css │ │ │ │ ├── amazeui.css │ │ │ │ ├── amazeui.flat.css │ │ │ │ ├── amazeui.flat.min.css │ │ │ │ └── amazeui.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── js │ │ │ │ ├── amazeui.ie8polyfill.js │ │ │ │ ├── amazeui.ie8polyfill.min.js │ │ │ │ ├── amazeui.js │ │ │ │ ├── amazeui.min.js │ │ │ │ ├── amazeui.widgets.helper.js │ │ │ │ └── amazeui.widgets.helper.min.js │ │ ├── fonts │ │ │ ├── .gitkeep │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── gulpfile.js │ │ ├── js │ │ │ ├── core.js │ │ │ ├── ui.add2home.js │ │ │ ├── ui.alert.js │ │ │ ├── ui.button.js │ │ │ ├── ui.collapse.js │ │ │ ├── ui.datepicker.js │ │ │ ├── ui.dimmer.js │ │ │ ├── ui.dropdown.js │ │ │ ├── ui.flexslider.js │ │ │ ├── ui.iscroll-lite.js │ │ │ ├── ui.modal.js │ │ │ ├── ui.offcanvas.js │ │ │ ├── ui.pinchzoom.js │ │ │ ├── ui.popover.js │ │ │ ├── ui.progress.js │ │ │ ├── ui.pureview.js │ │ │ ├── ui.scrollspy.js │ │ │ ├── ui.scrollspynav.js │ │ │ ├── ui.selected.js │ │ │ ├── ui.share.js │ │ │ ├── ui.smooth-scroll.js │ │ │ ├── ui.sticky.js │ │ │ ├── ui.tabs.js │ │ │ ├── ui.ucheck.js │ │ │ ├── ui.validator.js │ │ │ ├── util.cookie.js │ │ │ ├── util.fullscreen.js │ │ │ ├── util.geolocation.js │ │ │ ├── util.hammer.js │ │ │ ├── util.qrcode.js │ │ │ └── util.store.js │ │ ├── less │ │ │ ├── amazeui.less │ │ │ ├── amui.less │ │ │ ├── animation.less │ │ │ ├── article.less │ │ │ ├── badge.less │ │ │ ├── base.less │ │ │ ├── block-grid.less │ │ │ ├── breadcrumb.less │ │ │ ├── button-group.less │ │ │ ├── button.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── color-schemes │ │ │ │ ├── cyan.less │ │ │ │ ├── cyan2.less │ │ │ │ ├── gray.less │ │ │ │ ├── green.less │ │ │ │ ├── green2.less │ │ │ │ ├── indigo.less │ │ │ │ ├── orange.less │ │ │ │ ├── orange2.less │ │ │ │ ├── pink.less │ │ │ │ ├── purple.less │ │ │ │ ├── red.less │ │ │ │ ├── red2.less │ │ │ │ ├── schemes.json │ │ │ │ └── yellow.less │ │ │ ├── comment.less │ │ │ ├── form.less │ │ │ ├── grid.less │ │ │ ├── icon.less │ │ │ ├── image.less │ │ │ ├── input-group.less │ │ │ ├── legacy.ie.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── nav.less │ │ │ ├── pagination.less │ │ │ ├── panel.less │ │ │ ├── print.less │ │ │ ├── progress.less │ │ │ ├── table.less │ │ │ ├── themes │ │ │ │ ├── flat │ │ │ │ │ ├── amazeui.flat.less │ │ │ │ │ └── button.less │ │ │ │ ├── one │ │ │ │ │ ├── theme.one.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── widgets.less │ │ │ │ └── themes.json │ │ │ ├── thumbnail.less │ │ │ ├── topbar.less │ │ │ ├── ui.add2home.less │ │ │ ├── ui.alert.less │ │ │ ├── ui.component.less │ │ │ ├── ui.datepicker.less │ │ │ ├── ui.dropdown.less │ │ │ ├── ui.flexslider.less │ │ │ ├── ui.modal.less │ │ │ ├── ui.offcanvas.less │ │ │ ├── ui.popover.less │ │ │ ├── ui.progress.less │ │ │ ├── ui.pureview.less │ │ │ ├── ui.selected.less │ │ │ ├── ui.share.less │ │ │ ├── ui.tabs.less │ │ │ ├── ui.ucheck.less │ │ │ ├── utility.less │ │ │ └── variables.less │ │ ├── package.json │ │ └── widget │ │ │ ├── accordion │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── accordion.basic.less │ │ │ │ ├── accordion.default.less │ │ │ │ ├── accordion.gapped.less │ │ │ │ ├── accordion.hbs │ │ │ │ ├── accordion.js │ │ │ │ ├── accordion.less │ │ │ │ ├── accordion.one.less │ │ │ │ └── accordion.png │ │ │ ├── blank │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── blank.default.less │ │ │ │ ├── blank.hbs │ │ │ │ ├── blank.js │ │ │ │ ├── blank.less │ │ │ │ └── blank.png │ │ │ ├── container │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── container.default.less │ │ │ │ ├── container.hbs │ │ │ │ ├── container.js │ │ │ │ ├── container.less │ │ │ │ └── container.png │ │ │ ├── divider │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── divider.dashed.less │ │ │ │ ├── divider.default.less │ │ │ │ ├── divider.dotted.less │ │ │ │ ├── divider.hbs │ │ │ │ ├── divider.js │ │ │ │ ├── divider.less │ │ │ │ ├── divider.one.less │ │ │ │ └── divider.png │ │ │ ├── duoshuo │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── duoshuo.default.less │ │ │ │ ├── duoshuo.hbs │ │ │ │ ├── duoshuo.js │ │ │ │ ├── duoshuo.less │ │ │ │ └── duoshuo.png │ │ │ ├── figure │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── figure.default.less │ │ │ │ ├── figure.hbs │ │ │ │ ├── figure.js │ │ │ │ ├── figure.less │ │ │ │ ├── figure.one.less │ │ │ │ └── figure.png │ │ │ ├── footer │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── footer.default.less │ │ │ │ ├── footer.hbs │ │ │ │ ├── footer.js │ │ │ │ ├── footer.less │ │ │ │ ├── footer.one.less │ │ │ │ └── footer.png │ │ │ ├── gallery │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── gallery.bordered.less │ │ │ │ ├── gallery.default.less │ │ │ │ ├── gallery.hbs │ │ │ │ ├── gallery.imgbordered.less │ │ │ │ ├── gallery.js │ │ │ │ ├── gallery.less │ │ │ │ ├── gallery.one.less │ │ │ │ ├── gallery.overlay.less │ │ │ │ └── gallery.png │ │ │ ├── gotop │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── gotop.default.less │ │ │ │ ├── gotop.fixed.less │ │ │ │ ├── gotop.hbs │ │ │ │ ├── gotop.js │ │ │ │ ├── gotop.less │ │ │ │ ├── gotop.one.less │ │ │ │ └── gotop.png │ │ │ ├── header │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── header.default.less │ │ │ │ ├── header.hbs │ │ │ │ ├── header.js │ │ │ │ ├── header.less │ │ │ │ ├── header.one.less │ │ │ │ └── header.png │ │ │ ├── intro │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── intro.default.less │ │ │ │ ├── intro.hbs │ │ │ │ ├── intro.js │ │ │ │ ├── intro.less │ │ │ │ ├── intro.one.less │ │ │ │ └── intro.png │ │ │ ├── layout2 │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── layout2.default.less │ │ │ │ ├── layout2.hbs │ │ │ │ ├── layout2.js │ │ │ │ ├── layout2.less │ │ │ │ └── layout2.png │ │ │ ├── layout3 │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── layout3.default.less │ │ │ │ ├── layout3.hbs │ │ │ │ ├── layout3.js │ │ │ │ ├── layout3.less │ │ │ │ └── layout3.png │ │ │ ├── layout4 │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── layout4.default.less │ │ │ │ ├── layout4.hbs │ │ │ │ ├── layout4.js │ │ │ │ ├── layout4.less │ │ │ │ └── layout4.png │ │ │ ├── list_news │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── list_news.default.less │ │ │ │ ├── list_news.hbs │ │ │ │ ├── list_news.js │ │ │ │ ├── list_news.less │ │ │ │ ├── list_news.one.less │ │ │ │ └── list_news.png │ │ │ ├── map │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── map.default.less │ │ │ │ ├── map.hbs │ │ │ │ ├── map.js │ │ │ │ ├── map.less │ │ │ │ └── map.png │ │ │ ├── mechat │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── mechat.default.less │ │ │ │ ├── mechat.hbs │ │ │ │ ├── mechat.js │ │ │ │ ├── mechat.less │ │ │ │ └── mechat.png │ │ │ ├── menu │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── menu.default.less │ │ │ │ ├── menu.dropdown1.less │ │ │ │ ├── menu.dropdown2.less │ │ │ │ ├── menu.hbs │ │ │ │ ├── menu.js │ │ │ │ ├── menu.less │ │ │ │ ├── menu.offcanvas1.less │ │ │ │ ├── menu.offcanvas2.less │ │ │ │ ├── menu.one.less │ │ │ │ ├── menu.png │ │ │ │ ├── menu.slide1.less │ │ │ │ └── menu.stack.less │ │ │ ├── navbar │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── navbar.default.less │ │ │ │ ├── navbar.hbs │ │ │ │ ├── navbar.js │ │ │ │ ├── navbar.less │ │ │ │ ├── navbar.one.less │ │ │ │ └── navbar.png │ │ │ ├── pagination │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── pagination.default.less │ │ │ │ ├── pagination.hbs │ │ │ │ ├── pagination.js │ │ │ │ ├── pagination.less │ │ │ │ ├── pagination.one.less │ │ │ │ ├── pagination.png │ │ │ │ └── pagination.select.less │ │ │ ├── paragraph │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── paragraph.default.less │ │ │ │ ├── paragraph.hbs │ │ │ │ ├── paragraph.js │ │ │ │ ├── paragraph.less │ │ │ │ ├── paragraph.one.less │ │ │ │ └── paragraph.png │ │ │ ├── slider │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── slider.a1.less │ │ │ │ ├── slider.a2.less │ │ │ │ ├── slider.a3.less │ │ │ │ ├── slider.a4.less │ │ │ │ ├── slider.a5.less │ │ │ │ ├── slider.b1.less │ │ │ │ ├── slider.b2.less │ │ │ │ ├── slider.b3.less │ │ │ │ ├── slider.b4.less │ │ │ │ ├── slider.c1.less │ │ │ │ ├── slider.c2.less │ │ │ │ ├── slider.c3.less │ │ │ │ ├── slider.c4.less │ │ │ │ ├── slider.d1.less │ │ │ │ ├── slider.d2.less │ │ │ │ ├── slider.d3.less │ │ │ │ ├── slider.default.less │ │ │ │ ├── slider.hbs │ │ │ │ ├── slider.js │ │ │ │ ├── slider.less │ │ │ │ ├── slider.one.less │ │ │ │ └── slider.png │ │ │ ├── tabs │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── tabs.d2.less │ │ │ │ ├── tabs.default.less │ │ │ │ ├── tabs.hbs │ │ │ │ ├── tabs.js │ │ │ │ ├── tabs.less │ │ │ │ ├── tabs.one.less │ │ │ │ └── tabs.png │ │ │ ├── titlebar │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── titlebar.cols.less │ │ │ │ ├── titlebar.default.less │ │ │ │ ├── titlebar.hbs │ │ │ │ ├── titlebar.js │ │ │ │ ├── titlebar.less │ │ │ │ ├── titlebar.multi.less │ │ │ │ ├── titlebar.one.less │ │ │ │ └── titlebar.png │ │ │ └── wechatpay │ │ │ ├── HISTORY.md │ │ │ ├── README.en.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── wechatpay.default.less │ │ │ ├── wechatpay.hbs │ │ │ ├── wechatpay.js │ │ │ ├── wechatpay.less │ │ │ └── wechatpay.png │ ├── amazeui_admin │ │ ├── 404.html │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── admin.css │ │ │ │ ├── amazeui.datatables.min.css │ │ │ │ ├── amazeui.min.css │ │ │ │ ├── app.css │ │ │ │ ├── app.less │ │ │ │ ├── fullcalendar.min.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── i │ │ │ │ ├── app-icon72x72@2x.png │ │ │ │ ├── examples │ │ │ │ │ ├── admin-chrome.png │ │ │ │ │ ├── admin-firefox.png │ │ │ │ │ ├── admin-ie.png │ │ │ │ │ ├── admin-opera.png │ │ │ │ │ ├── admin-safari.png │ │ │ │ │ ├── adminPage.png │ │ │ │ │ ├── blogPage.png │ │ │ │ │ ├── landing.png │ │ │ │ │ ├── landingPage.png │ │ │ │ │ ├── loginPage.png │ │ │ │ │ └── sidebarPage.png │ │ │ │ ├── favicon.png │ │ │ │ └── startup-640x1096.png │ │ │ ├── img │ │ │ │ ├── a5.png │ │ │ │ ├── k.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── logoa.png │ │ │ │ ├── logob.png │ │ │ │ ├── user01.png │ │ │ │ ├── user02.png │ │ │ │ ├── user03.png │ │ │ │ ├── user04.png │ │ │ │ ├── user05.png │ │ │ │ ├── user06.png │ │ │ │ └── user07.png │ │ │ └── js │ │ │ │ ├── amazeui.datatables.min.js │ │ │ │ ├── amazeui.min.js │ │ │ │ ├── app.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── echarts.min.js │ │ │ │ ├── fullcalendar.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── moment.js │ │ │ │ └── theme.js │ │ ├── calendar.html │ │ ├── chart.html │ │ ├── form.html │ │ ├── index.html │ │ ├── login.html │ │ ├── sign-up.html │ │ ├── table-list-img.html │ │ ├── table-list.html │ │ ├── tables.html │ │ ├── 白色.psd │ │ └── 黑色.psd │ ├── error-404 │ │ ├── css │ │ │ └── 404.css │ │ ├── images │ │ │ ├── bird.png │ │ │ ├── san.png │ │ │ ├── yun0.png │ │ │ ├── yun1.png │ │ │ └── yun2.png │ │ ├── index.html │ │ └── js │ │ │ └── jquery-1.7.2.min.js │ ├── error │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── banner.jpg │ │ │ ├── banner2.jpg │ │ │ ├── img-sp.png │ │ │ └── rain-315446_1280.jpg │ │ └── index.html │ ├── handlebars │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── handlebars-source.gemspec │ │ ├── handlebars.amd.js │ │ ├── handlebars.amd.min.js │ │ ├── handlebars.js │ │ ├── handlebars.js.nuspec │ │ ├── handlebars.min.js │ │ ├── handlebars.runtime.amd.js │ │ ├── handlebars.runtime.amd.min.js │ │ ├── handlebars.runtime.js │ │ ├── handlebars.runtime.min.js │ │ ├── lib │ │ │ └── handlebars │ │ │ │ └── source.rb │ │ └── package.json │ ├── jQueryIpputCss │ │ ├── css │ │ │ └── style.css │ │ ├── index.html │ │ ├── jquery插件库.url │ │ ├── js │ │ │ └── jquery-1.7.2.min.js │ │ └── www.jq22.com.txt │ ├── jquery-mkinfinite │ │ ├── css │ │ │ ├── default.css │ │ │ ├── normalize.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── index.html │ │ ├── jQuery之家.url │ │ ├── js │ │ │ └── jquery-2.1.1.min.js │ │ ├── readme.html │ │ └── src │ │ │ └── jquery.mkinfinite.js │ ├── jquery-unitegallery │ │ ├── css │ │ │ └── unite-gallery.css │ │ ├── images │ │ │ ├── button-close.png │ │ │ ├── cover-grid.png │ │ │ ├── icon-link32.png │ │ │ ├── icon-play32.png │ │ │ ├── icon-zoom32.png │ │ │ ├── lightbox-arrow-left.png │ │ │ ├── lightbox-arrow-right.png │ │ │ ├── lightbox-icon-close-compact2.png │ │ │ ├── lightbox-icon-close.png │ │ │ ├── loader-black1.gif │ │ │ ├── loader-black2.gif │ │ │ ├── loader-black3.gif │ │ │ ├── loader-black4.gif │ │ │ ├── loader-black5.gif │ │ │ ├── loader-black6.gif │ │ │ ├── loader-black7.gif │ │ │ ├── loader-white1.gif │ │ │ ├── loader-white2.gif │ │ │ ├── loader-white3.gif │ │ │ ├── loader-white4.gif │ │ │ ├── loader-white5.gif │ │ │ ├── loader-white6.gif │ │ │ ├── loader-white7.gif │ │ │ ├── loader.gif │ │ │ ├── loader_bright.gif │ │ │ ├── loader_skype_trans.gif │ │ │ ├── not_loaded.png │ │ │ ├── play-button-round.png │ │ │ └── play-button-square.png │ │ ├── js │ │ │ ├── jquery-11.0.min.js │ │ │ └── unitegallery.min.js │ │ ├── skins │ │ │ └── default │ │ │ │ ├── arrow_grid_down.png │ │ │ │ ├── arrow_grid_up.png │ │ │ │ ├── arrows_strip_down.png │ │ │ │ ├── arrows_strip_left.png │ │ │ │ ├── arrows_strip_right.png │ │ │ │ ├── arrows_strip_up.png │ │ │ │ ├── button_fullscreen.png │ │ │ │ ├── button_playpause.png │ │ │ │ ├── grid_arrow_left.png │ │ │ │ ├── grid_arrow_right.png │ │ │ │ ├── grid_handle_black_bottom.png │ │ │ │ ├── grid_handle_black_left.png │ │ │ │ ├── grid_handle_black_right.png │ │ │ │ ├── grid_handle_black_top.png │ │ │ │ ├── icon_zoom_back.png │ │ │ │ ├── icon_zoom_minus.png │ │ │ │ ├── icon_zoom_plus.png │ │ │ │ ├── slider_arrow_left.png │ │ │ │ ├── slider_arrow_right.png │ │ │ │ ├── slider_bullets.png │ │ │ │ ├── tile_bullets_blue.png │ │ │ │ ├── tile_bullets_brown.png │ │ │ │ ├── tile_bullets_gray.png │ │ │ │ ├── tile_bullets_green.png │ │ │ │ ├── tile_bullets_red.png │ │ │ │ ├── tile_button_left.png │ │ │ │ ├── tile_button_play_pause.png │ │ │ │ └── tile_button_right.png │ │ └── themes │ │ │ └── compact │ │ │ └── ug-theme-compact.js │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── acceptData.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── layer │ │ ├── layer.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ └── layer.css │ ├── login │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── account.png │ │ │ ├── adm.png │ │ │ ├── avtar.png │ │ │ ├── bg1.jpg │ │ │ ├── close.png │ │ │ ├── code.png │ │ │ ├── email.png │ │ │ ├── from_name.psd │ │ │ ├── key.png │ │ │ ├── login_pwd.png │ │ │ ├── mobile.png │ │ │ ├── name.png │ │ │ ├── nick.png │ │ │ ├── pass.png │ │ │ ├── pwd.png │ │ │ ├── repwd.png │ │ │ └── username.png │ │ └── index.html │ ├── socket.io-client-1.3.7 │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── .zuul.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── manager.js │ │ │ ├── on.js │ │ │ ├── socket.js │ │ │ └── url.js │ │ ├── package.json │ │ ├── socket.io.js │ │ ├── support │ │ │ ├── browserify.js │ │ │ └── browserify.sh │ │ └── test │ │ │ ├── connection.js │ │ │ ├── index.js │ │ │ ├── socket.js │ │ │ ├── support │ │ │ ├── env.js │ │ │ └── server.js │ │ │ └── url.js │ ├── vue-resource │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── README.md │ │ │ ├── vue-resource.common.js │ │ │ ├── vue-resource.es2015.js │ │ │ ├── vue-resource.js │ │ │ └── vue-resource.min.js │ │ ├── src │ │ │ ├── http │ │ │ │ ├── client │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── node.js │ │ │ │ │ ├── xdr.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── headers.js │ │ │ │ ├── index.js │ │ │ │ ├── interceptor │ │ │ │ │ ├── before.js │ │ │ │ │ ├── body.js │ │ │ │ │ ├── cors.js │ │ │ │ │ ├── header.js │ │ │ │ │ ├── jsonp.js │ │ │ │ │ └── method.js │ │ │ │ ├── request.js │ │ │ │ └── response.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── promise.js │ │ │ │ └── url-template.js │ │ │ ├── promise.js │ │ │ ├── resource.js │ │ │ ├── url │ │ │ │ ├── index.js │ │ │ │ ├── query.js │ │ │ │ ├── root.js │ │ │ │ └── template.js │ │ │ └── util.js │ │ ├── test │ │ │ ├── data │ │ │ │ ├── invalid.json │ │ │ │ ├── text.txt │ │ │ │ └── valid.json │ │ │ ├── http.js │ │ │ ├── http.test.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── promise.js │ │ │ ├── resource.js │ │ │ ├── url.js │ │ │ └── webpack.config.js │ │ └── yarn.lock │ ├── vue-router │ │ ├── .bower.json │ │ ├── .flowconfig │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.js │ │ │ ├── dev.config.js │ │ │ ├── release.sh │ │ │ └── update-docs.sh │ │ ├── dist │ │ │ ├── vue-router.common.js │ │ │ ├── vue-router.js │ │ │ └── vue-router.min.js │ │ ├── flow │ │ │ └── declarations.js │ │ ├── src │ │ │ ├── components │ │ │ │ ├── link.js │ │ │ │ └── view.js │ │ │ ├── create-matcher.js │ │ │ ├── create-route-map.js │ │ │ ├── history │ │ │ │ ├── abstract.js │ │ │ │ ├── base.js │ │ │ │ ├── hash.js │ │ │ │ └── html5.js │ │ │ ├── index.js │ │ │ ├── install.js │ │ │ └── util │ │ │ │ ├── async.js │ │ │ │ ├── dom.js │ │ │ │ ├── location.js │ │ │ │ ├── params.js │ │ │ │ ├── path.js │ │ │ │ ├── push-state.js │ │ │ │ ├── query.js │ │ │ │ ├── route.js │ │ │ │ ├── scroll.js │ │ │ │ └── warn.js │ │ └── types │ │ │ ├── index.d.ts │ │ │ ├── router.d.ts │ │ │ └── vue.d.ts │ └── vue │ │ ├── .babelrc │ │ ├── .bower.json │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .flowconfig │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── BACKERS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmarks │ │ ├── big-table │ │ │ ├── demo.css │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── dbmon │ │ │ ├── ENV.js │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ └── lib │ │ │ │ ├── memory-stats.js │ │ │ │ ├── monitor.js │ │ │ │ └── styles.css │ │ ├── reorder-list │ │ │ └── index.html │ │ ├── ssr │ │ │ ├── README.md │ │ │ ├── common.js │ │ │ ├── renderToStream.js │ │ │ └── renderToString.js │ │ ├── svg │ │ │ └── index.html │ │ └── uptime │ │ │ └── index.html │ │ ├── build │ │ ├── .eslintrc │ │ ├── alias.js │ │ ├── build.js │ │ ├── ci.sh │ │ ├── config.js │ │ ├── get-weex-version.js │ │ ├── git-hooks │ │ │ └── pre-commit │ │ ├── karma.base.config.js │ │ ├── karma.cover.config.js │ │ ├── karma.dev.config.js │ │ ├── karma.sauce.config.js │ │ ├── karma.unit.config.js │ │ ├── nightwatch.config.js │ │ ├── release-weex.sh │ │ └── release.sh │ │ ├── circle.yml │ │ ├── dist │ │ ├── README.md │ │ ├── vue.common.js │ │ ├── vue.esm.js │ │ ├── vue.js │ │ ├── vue.min.js │ │ ├── vue.runtime.common.js │ │ ├── vue.runtime.esm.js │ │ ├── vue.runtime.js │ │ └── vue.runtime.min.js │ │ ├── examples │ │ ├── commits │ │ │ ├── app.js │ │ │ └── index.html │ │ ├── elastic-header │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── firebase │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── grid │ │ │ ├── grid.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── markdown │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── modal │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── move-animations │ │ │ └── index.html │ │ ├── select2 │ │ │ └── index.html │ │ ├── svg │ │ │ ├── index.html │ │ │ ├── style.css │ │ │ └── svg.js │ │ ├── todomvc │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ └── readme.md │ │ └── tree │ │ │ ├── index.html │ │ │ └── tree.js │ │ ├── flow │ │ ├── compiler.js │ │ ├── component.js │ │ ├── global-api.js │ │ ├── modules.js │ │ ├── options.js │ │ ├── ssr.js │ │ └── vnode.js │ │ ├── package.json │ │ ├── packages │ │ ├── vue-server-renderer │ │ │ ├── README.md │ │ │ ├── build.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vue-template-compiler │ │ │ ├── README.md │ │ │ ├── build.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── weex-template-compiler │ │ │ ├── README.md │ │ │ ├── build.js │ │ │ ├── index.js │ │ │ └── package.json │ │ └── weex-vue-framework │ │ │ ├── README.md │ │ │ ├── factory.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── src │ │ ├── compiler │ │ │ ├── codegen │ │ │ │ ├── events.js │ │ │ │ └── index.js │ │ │ ├── directives │ │ │ │ ├── bind.js │ │ │ │ ├── index.js │ │ │ │ └── model.js │ │ │ ├── error-detector.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── optimizer.js │ │ │ └── parser │ │ │ │ ├── entity-decoder.js │ │ │ │ ├── filter-parser.js │ │ │ │ ├── html-parser.js │ │ │ │ ├── index.js │ │ │ │ └── text-parser.js │ │ ├── core │ │ │ ├── components │ │ │ │ ├── index.js │ │ │ │ └── keep-alive.js │ │ │ ├── config.js │ │ │ ├── global-api │ │ │ │ ├── assets.js │ │ │ │ ├── extend.js │ │ │ │ ├── index.js │ │ │ │ ├── mixin.js │ │ │ │ └── use.js │ │ │ ├── index.js │ │ │ ├── instance │ │ │ │ ├── events.js │ │ │ │ ├── index.js │ │ │ │ ├── init.js │ │ │ │ ├── inject.js │ │ │ │ ├── lifecycle.js │ │ │ │ ├── proxy.js │ │ │ │ ├── render-helpers │ │ │ │ │ ├── bind-object-props.js │ │ │ │ │ ├── check-keycodes.js │ │ │ │ │ ├── render-list.js │ │ │ │ │ ├── render-slot.js │ │ │ │ │ ├── render-static.js │ │ │ │ │ ├── resolve-filter.js │ │ │ │ │ └── resolve-slots.js │ │ │ │ ├── render.js │ │ │ │ └── state.js │ │ │ ├── observer │ │ │ │ ├── array.js │ │ │ │ ├── dep.js │ │ │ │ ├── index.js │ │ │ │ ├── scheduler.js │ │ │ │ └── watcher.js │ │ │ ├── util │ │ │ │ ├── debug.js │ │ │ │ ├── env.js │ │ │ │ ├── error.js │ │ │ │ ├── index.js │ │ │ │ ├── lang.js │ │ │ │ ├── options.js │ │ │ │ ├── perf.js │ │ │ │ └── props.js │ │ │ └── vdom │ │ │ │ ├── create-component.js │ │ │ │ ├── create-element.js │ │ │ │ ├── helpers │ │ │ │ ├── index.js │ │ │ │ ├── merge-hook.js │ │ │ │ ├── normalize-children.js │ │ │ │ └── update-listeners.js │ │ │ │ ├── modules │ │ │ │ ├── directives.js │ │ │ │ ├── index.js │ │ │ │ └── ref.js │ │ │ │ ├── patch.js │ │ │ │ └── vnode.js │ │ ├── entries │ │ │ ├── web-compiler.js │ │ │ ├── web-runtime-with-compiler.js │ │ │ ├── web-runtime.js │ │ │ ├── web-server-renderer.js │ │ │ ├── weex-compiler.js │ │ │ ├── weex-factory.js │ │ │ └── weex-framework.js │ │ ├── platforms │ │ │ ├── web │ │ │ │ ├── compiler │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── model.js │ │ │ │ │ │ └── text.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── class.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.js │ │ │ │ │ └── util.js │ │ │ │ ├── runtime │ │ │ │ │ ├── class-util.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── transition-group.js │ │ │ │ │ │ └── transition.js │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── model.js │ │ │ │ │ │ └── show.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── attrs.js │ │ │ │ │ │ ├── class.js │ │ │ │ │ │ ├── dom-props.js │ │ │ │ │ │ ├── events.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── style.js │ │ │ │ │ │ └── transition.js │ │ │ │ │ ├── node-ops.js │ │ │ │ │ ├── patch.js │ │ │ │ │ └── transition-util.js │ │ │ │ ├── server │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── show.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── attrs.js │ │ │ │ │ │ ├── class.js │ │ │ │ │ │ ├── dom-props.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.js │ │ │ │ │ └── util.js │ │ │ │ └── util │ │ │ │ │ ├── attrs.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── compat.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ └── weex │ │ │ │ ├── compiler │ │ │ │ ├── directives │ │ │ │ │ ├── index.js │ │ │ │ │ └── model.js │ │ │ │ ├── index.js │ │ │ │ └── modules │ │ │ │ │ ├── append.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── props.js │ │ │ │ │ └── style.js │ │ │ │ ├── framework.js │ │ │ │ ├── runtime │ │ │ │ ├── components │ │ │ │ │ ├── index.js │ │ │ │ │ ├── transition-group.js │ │ │ │ │ └── transition.js │ │ │ │ ├── directives │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── modules │ │ │ │ │ ├── attrs.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── style.js │ │ │ │ │ └── transition.js │ │ │ │ ├── node-ops.js │ │ │ │ ├── patch.js │ │ │ │ └── text-node.js │ │ │ │ └── util │ │ │ │ └── index.js │ │ ├── server │ │ │ ├── create-bundle-renderer.js │ │ │ ├── create-bundle-runner.js │ │ │ ├── create-renderer.js │ │ │ ├── render-context.js │ │ │ ├── render-stream.js │ │ │ ├── render.js │ │ │ ├── source-map-support.js │ │ │ └── write.js │ │ ├── sfc │ │ │ └── parser.js │ │ └── shared │ │ │ └── util.js │ │ ├── test │ │ ├── e2e │ │ │ ├── .eslintrc │ │ │ ├── runner.js │ │ │ └── specs │ │ │ │ ├── commits.js │ │ │ │ ├── grid.js │ │ │ │ ├── markdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── select2.js │ │ │ │ ├── svg.js │ │ │ │ ├── todomvc.js │ │ │ │ └── tree.js │ │ ├── helpers │ │ │ ├── .eslintrc │ │ │ ├── classlist.js │ │ │ ├── to-equal.js │ │ │ ├── to-have-been-warned.js │ │ │ ├── trigger-event.js │ │ │ ├── vdom.js │ │ │ └── wait-for-update.js │ │ ├── ssr │ │ │ ├── .eslintrc │ │ │ ├── fixtures │ │ │ │ ├── app.js │ │ │ │ ├── cache.js │ │ │ │ ├── comp.js │ │ │ │ ├── error.js │ │ │ │ └── split.js │ │ │ ├── jasmine.json │ │ │ ├── ssr-bundle-render.spec.js │ │ │ ├── ssr-stream.spec.js │ │ │ └── ssr-string.spec.js │ │ ├── unit │ │ │ ├── .eslintrc │ │ │ ├── features │ │ │ │ ├── component │ │ │ │ │ ├── component-async.spec.js │ │ │ │ │ ├── component-keep-alive.spec.js │ │ │ │ │ ├── component-scoped-slot.spec.js │ │ │ │ │ ├── component-slot.spec.js │ │ │ │ │ └── component.spec.js │ │ │ │ ├── directives │ │ │ │ │ ├── bind.spec.js │ │ │ │ │ ├── class.spec.js │ │ │ │ │ ├── cloak.spec.js │ │ │ │ │ ├── for.spec.js │ │ │ │ │ ├── html.spec.js │ │ │ │ │ ├── if.spec.js │ │ │ │ │ ├── model-checkbox.spec.js │ │ │ │ │ ├── model-component.spec.js │ │ │ │ │ ├── model-dynamic.spec.js │ │ │ │ │ ├── model-file.spec.js │ │ │ │ │ ├── model-parse.spec.js │ │ │ │ │ ├── model-radio.spec.js │ │ │ │ │ ├── model-select.spec.js │ │ │ │ │ ├── model-text.spec.js │ │ │ │ │ ├── on.spec.js │ │ │ │ │ ├── once.spec.js │ │ │ │ │ ├── pre.spec.js │ │ │ │ │ ├── show.spec.js │ │ │ │ │ ├── static-style-parser.spec.js │ │ │ │ │ ├── style.spec.js │ │ │ │ │ └── text.spec.js │ │ │ │ ├── error-handling.spec.js │ │ │ │ ├── filter │ │ │ │ │ └── filter.spec.js │ │ │ │ ├── global-api │ │ │ │ │ ├── assets.spec.js │ │ │ │ │ ├── compile.spec.js │ │ │ │ │ ├── config.spec.js │ │ │ │ │ ├── extend.spec.js │ │ │ │ │ ├── mixin.spec.js │ │ │ │ │ ├── set-delete.spec.js │ │ │ │ │ └── use.spec.js │ │ │ │ ├── instance │ │ │ │ │ ├── init.spec.js │ │ │ │ │ ├── methods-data.spec.js │ │ │ │ │ ├── methods-events.spec.js │ │ │ │ │ ├── methods-lifecycle.spec.js │ │ │ │ │ ├── properties.spec.js │ │ │ │ │ └── render-proxy.spec.js │ │ │ │ ├── options │ │ │ │ │ ├── _scopeId.spec.js │ │ │ │ │ ├── components.spec.js │ │ │ │ │ ├── computed.spec.js │ │ │ │ │ ├── data.spec.js │ │ │ │ │ ├── delimiters.spec.js │ │ │ │ │ ├── directives.spec.js │ │ │ │ │ ├── el.spec.js │ │ │ │ │ ├── extends.spec.js │ │ │ │ │ ├── functional.spec.js │ │ │ │ │ ├── inject.spec.js │ │ │ │ │ ├── lifecycle.spec.js │ │ │ │ │ ├── methods.spec.js │ │ │ │ │ ├── mixins.spec.js │ │ │ │ │ ├── name.spec.js │ │ │ │ │ ├── parent.spec.js │ │ │ │ │ ├── props.spec.js │ │ │ │ │ ├── propsData.spec.js │ │ │ │ │ ├── render.spec.js │ │ │ │ │ ├── renderError.spec.js │ │ │ │ │ ├── template.spec.js │ │ │ │ │ └── watch.spec.js │ │ │ │ ├── ref.spec.js │ │ │ │ └── transition │ │ │ │ │ ├── inject-styles.js │ │ │ │ │ ├── transition-group.spec.js │ │ │ │ │ ├── transition-mode.spec.js │ │ │ │ │ └── transition.spec.js │ │ │ ├── index.js │ │ │ └── modules │ │ │ │ ├── compiler │ │ │ │ ├── codegen.spec.js │ │ │ │ ├── compiler-options.spec.js │ │ │ │ ├── optimizer.spec.js │ │ │ │ └── parser.spec.js │ │ │ │ ├── observer │ │ │ │ ├── observer.spec.js │ │ │ │ ├── scheduler.spec.js │ │ │ │ └── watcher.spec.js │ │ │ │ ├── sfc │ │ │ │ └── sfc-parser.spec.js │ │ │ │ ├── util │ │ │ │ └── next-tick.spec.js │ │ │ │ └── vdom │ │ │ │ ├── create-component.spec.js │ │ │ │ ├── create-element.spec.js │ │ │ │ ├── modules │ │ │ │ ├── attrs.spec.js │ │ │ │ ├── class.spec.js │ │ │ │ ├── directive.spec.js │ │ │ │ ├── dom-props.spec.js │ │ │ │ ├── events.spec.js │ │ │ │ └── style.spec.js │ │ │ │ └── patch │ │ │ │ ├── children.spec.js │ │ │ │ ├── edge-cases.spec.js │ │ │ │ ├── element.spec.js │ │ │ │ ├── hooks.spec.js │ │ │ │ └── hydration.spec.js │ │ └── weex │ │ │ ├── .eslintrc │ │ │ ├── compiler │ │ │ ├── append.spec.js │ │ │ ├── class.spec.js │ │ │ ├── compile.spec.js │ │ │ ├── props.spec.js │ │ │ ├── style.spec.js │ │ │ └── v-model.spec.js │ │ │ ├── helpers │ │ │ └── index.js │ │ │ ├── jasmine.json │ │ │ └── runtime │ │ │ ├── attrs.spec.js │ │ │ ├── class.spec.js │ │ │ ├── events.spec.js │ │ │ ├── framework.spec.js │ │ │ ├── node.spec.js │ │ │ └── style.spec.js │ │ ├── types │ │ ├── index.d.ts │ │ ├── options.d.ts │ │ ├── plugin.d.ts │ │ ├── test │ │ │ ├── augmentation-test.ts │ │ │ ├── options-test.ts │ │ │ ├── plugin-test.ts │ │ │ ├── tsconfig.json │ │ │ └── vue-test.ts │ │ ├── typings.json │ │ ├── vnode.d.ts │ │ └── vue.d.ts │ │ └── yarn.lock ├── plugin │ └── editor │ │ ├── css │ │ ├── editor.css │ │ ├── editor.css.map │ │ ├── pygment_trac.css │ │ ├── stylesheet.css │ │ └── zoom.css │ │ ├── images │ │ ├── code.png │ │ ├── editor@2x.png │ │ ├── loader.gif │ │ ├── pattern.png │ │ ├── tar.png │ │ ├── top.png │ │ └── zip.png │ │ └── js │ │ ├── MIDI.js │ │ ├── bacheditor.js │ │ ├── bootstrap3-typeahead.js │ │ ├── fileupload.js │ │ ├── highlight.js │ │ ├── marimba-mp3.js │ │ ├── modal.js │ │ ├── piano.js │ │ ├── template.js │ │ └── zoom.js ├── robots.txt ├── uploads │ └── .gitignore ├── watermark │ └── logo.png ├── web.config └── xcx │ ├── icon │ ├── about.png │ ├── activity.png │ ├── address.png │ ├── area.png │ ├── banquan.png │ ├── business_card.png │ ├── calendar.png │ ├── cancel.png │ ├── card.png │ ├── clear.png │ ├── collection.png │ ├── company.png │ ├── constellation.png │ ├── contact.png │ ├── dial.png │ ├── edit.png │ ├── email.png │ ├── fankui.png │ ├── fax.png │ ├── img.png │ ├── jiantou.png │ ├── meng.png │ ├── message.png │ ├── mobile.png │ ├── money.png │ ├── movie.png │ ├── price.png │ ├── qq.png │ ├── qrcode.png │ ├── score.png │ ├── set.png │ ├── shippingaddress.png │ ├── shop.png │ ├── shoppingcart.png │ ├── task.png │ ├── top.png │ ├── tv.png │ ├── username.png │ ├── wechat.png │ ├── wether.png │ └── xiaohua.png │ ├── image │ ├── businesscard │ │ └── 1.jpg │ └── topbg.jpg │ └── wxParse │ └── emojis │ ├── 00.gif │ ├── 01.gif │ ├── 02.gif │ ├── 03.gif │ ├── 04.gif │ ├── 05.gif │ ├── 06.gif │ ├── 07.gif │ ├── 08.gif │ ├── 09.gif │ ├── 10.gif │ ├── 100.gif │ ├── 101.gif │ ├── 102.gif │ ├── 103.gif │ ├── 104.gif │ ├── 105.gif │ ├── 106.gif │ ├── 107.gif │ ├── 108.gif │ ├── 109.gif │ ├── 11.gif │ ├── 110.gif │ ├── 111.gif │ ├── 112.gif │ ├── 113.gif │ ├── 114.gif │ ├── 115.gif │ ├── 116.gif │ ├── 117.gif │ ├── 118.gif │ ├── 119.gif │ ├── 12.gif │ ├── 120.gif │ ├── 121.gif │ ├── 122.gif │ ├── 123.gif │ ├── 124.gif │ ├── 125.gif │ ├── 126.gif │ ├── 127.gif │ ├── 128.gif │ ├── 129.gif │ ├── 13.gif │ ├── 130.gif │ ├── 131.gif │ ├── 132.gif │ ├── 133.gif │ ├── 134.gif │ ├── 14.gif │ ├── 15.gif │ ├── 16.gif │ ├── 17.gif │ ├── 18.gif │ ├── 19.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 26.gif │ ├── 27.gif │ ├── 28.gif │ ├── 29.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 36.gif │ ├── 37.gif │ ├── 38.gif │ ├── 39.gif │ ├── 40.gif │ ├── 41.gif │ ├── 42.gif │ ├── 43.gif │ ├── 44.gif │ ├── 45.gif │ ├── 46.gif │ ├── 47.gif │ ├── 48.gif │ ├── 49.gif │ ├── 50.gif │ ├── 51.gif │ ├── 52.gif │ ├── 53.gif │ ├── 54.gif │ ├── 55.gif │ ├── 56.gif │ ├── 57.gif │ ├── 58.gif │ ├── 59.gif │ ├── 60.gif │ ├── 61.gif │ ├── 62.gif │ ├── 63.gif │ ├── 64.gif │ ├── 65.gif │ ├── 66.gif │ ├── 67.gif │ ├── 68.gif │ ├── 69.gif │ ├── 70.gif │ ├── 71.gif │ ├── 72.gif │ ├── 73.gif │ ├── 74.gif │ ├── 75.gif │ ├── 76.gif │ ├── 77.gif │ ├── 78.gif │ ├── 79.gif │ ├── 80.gif │ ├── 81.gif │ ├── 82.gif │ ├── 83.gif │ ├── 84.gif │ ├── 85.gif │ ├── 86.gif │ ├── 87.gif │ ├── 88.gif │ ├── 89.gif │ ├── 90.gif │ ├── 91.gif │ ├── 92.gif │ ├── 93.gif │ ├── 94.gif │ ├── 95.gif │ ├── 96.gif │ ├── 97.gif │ ├── 98.gif │ └── 99.gif ├── resources ├── assets │ ├── css │ │ ├── admin │ │ │ └── app.css │ │ ├── home │ │ │ └── app.css │ │ ├── login │ │ │ └── app.css │ │ └── user │ │ │ └── app.css │ ├── js │ │ ├── admin.js │ │ ├── admin │ │ │ ├── main.js │ │ │ └── z.js │ │ ├── base.js │ │ ├── base │ │ │ ├── base-behavior.js │ │ │ ├── base-cache.js │ │ │ ├── base-date.js │ │ │ ├── base-function.js │ │ │ ├── base-layer.js │ │ │ └── base.js │ │ ├── home.js │ │ ├── home │ │ │ ├── main.js │ │ │ ├── nav.js │ │ │ └── z.js │ │ ├── login.js │ │ ├── login │ │ │ ├── main.js │ │ │ └── z.js │ │ ├── user.js │ │ └── user │ │ │ ├── main.js │ │ │ └── z.js │ └── less │ │ ├── admin │ │ ├── admin.less │ │ └── test.less │ │ ├── base.less │ │ ├── common.less │ │ ├── home │ │ ├── home.less │ │ └── test.less │ │ ├── login │ │ └── login.less │ │ └── user │ │ ├── test.less │ │ └── user.less ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh-CN │ │ ├── admin.php │ │ ├── api.php │ │ ├── auth.php │ │ ├── default.php │ │ ├── login.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── register.php │ │ ├── user.php │ │ └── validation.php └── views │ ├── admin │ ├── article │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── attributegroup │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── attributevalue │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── classify │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── classifylink │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── classifyproduct │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── classifyquestion │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── classifywechat │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── expresstemplate │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── expressvalue │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── home.blade.php │ ├── include │ │ ├── button-add.blade.php │ │ ├── button-cache-link.blade.php │ │ ├── button-cache-menu.blade.php │ │ ├── button-cache-picture.blade.php │ │ ├── button-cache.blade.php │ │ ├── fieldvalue │ │ │ ├── attachment.blade.php │ │ │ ├── option.blade.php │ │ │ ├── status.blade.php │ │ │ └── v-for.blade.php │ │ ├── pages.blade.php │ │ ├── search.blade.php │ │ ├── vue-apiurl-action-cache.blade.php │ │ ├── vue-apiurl-action-clear.blade.php │ │ ├── vue-apiurl-action-delete.blade.php │ │ ├── vue-apiurl-action-one.blade.php │ │ ├── vue-el.blade.php │ │ ├── vue-http-before.blade.php │ │ ├── vue-http-catch-error.blade.php │ │ ├── vue-http-then-error.blade.php │ │ ├── vue-methods-action_cache_create.blade.php │ │ ├── vue-methods-action_info_return.blade.php │ │ ├── vue-methods-action_list_do.blade.php │ │ ├── vue-methods-action_list_get.blade.php │ │ ├── vue-methods-action_list_search.blade.php │ │ ├── vue-methods-action_menu_create.blade.php │ │ ├── vue-methods-action_one_get.blade.php │ │ ├── vue-methods-link_click_add.blade.php │ │ ├── vue-methods-link_click_back.blade.php │ │ ├── vue-methods-link_click_delete.blade.php │ │ ├── vue-methods-link_click_edit.blade.php │ │ ├── vue-methods-link_click_page.blade.php │ │ ├── vue-methods-link_click_subval.blade.php │ │ ├── vue-pages-computed.blade.php │ │ ├── vue-pages-dataitems.blade.php │ │ ├── vue-pages-pageparams-attributegroup.blade.php │ │ ├── vue-pages-pageparams-expresstemplate.blade.php │ │ ├── vue-pages-pageparams-product.blade.php │ │ ├── vue-pages-pageparams-question.blade.php │ │ ├── vue-pages-pageparams-type.blade.php │ │ ├── vue-pages-pageparams-user.blade.php │ │ ├── vue-pages-pageparams-userrole.blade.php │ │ ├── vue-pages-pageparams-wechat.blade.php │ │ ├── vue-pages-pageparams.blade.php │ │ ├── vue-pages-paramsdata-user.blade.php │ │ ├── vue-pages-paramsdata-userpermission.blade.php │ │ ├── vue-pages-paramsdata.blade.php │ │ └── vue-ready.blade.php │ ├── letter │ │ ├── add.blade.php │ │ ├── index.blade.php │ │ └── nav.blade.php │ ├── link │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── log │ │ └── index.blade.php │ ├── nav.blade.php │ ├── navigation │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── picture │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── product │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── productattribute │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── question │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── questionoption │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── setting │ │ └── setting.blade.php │ ├── user │ │ ├── edit_pwd.blade.php │ │ ├── index.blade.php │ │ ├── set.blade.php │ │ └── userinfo.blade.php │ ├── userpermission │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── userrole │ │ ├── add.blade.php │ │ ├── index.blade.php │ │ └── set.blade.php │ ├── wechat │ │ ├── add.blade.php │ │ ├── defaultreply.blade.php │ │ ├── index.blade.php │ │ ├── manage.blade.php │ │ ├── messagetpl.blade.php │ │ └── subscribe.blade.php │ ├── wechatreplyimagetext │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── wechatreplytext │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── wechatuser │ │ └── index.blade.php │ └── xcxmp │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ └── 503.blade.php │ ├── home.blade.php │ ├── layouts │ ├── admin.blade.php │ ├── admin_iframe.blade.php │ ├── app.blade.php │ ├── login.blade.php │ └── user.blade.php │ ├── user │ ├── experience │ │ └── index.blade.php │ ├── header.blade.php │ ├── home.blade.php │ ├── letter │ │ ├── add.blade.php │ │ ├── index.blade.php │ │ └── nav.blade.php │ ├── log │ │ └── index.blade.php │ ├── login.blade.php │ ├── nav.blade.php │ ├── panel.blade.php │ ├── register.blade.php │ ├── score │ │ └── index.blade.php │ ├── site.blade.php │ └── userinfo │ │ ├── edit_pwd.blade.php │ │ └── index.blade.php │ ├── vendor │ ├── UEditor │ │ ├── .gitkeep │ │ └── head.blade.php │ └── editor │ │ ├── decode.blade.php │ │ └── head.blade.php │ └── welcome.blade.php ├── server.php ├── start_for_win.bat ├── start_io.php ├── start_web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── ExampleTest.php └── TestCase.php └── vendor ├── autoload.php ├── barryvdh └── laravel-debugbar │ ├── .gitignore │ ├── LICENSE │ ├── changelog.md │ ├── composer.json │ ├── config │ └── debugbar.php │ ├── readme.md │ └── src │ ├── Console │ ├── ClearCommand.php │ └── PublishCommand.php │ ├── Controllers │ ├── AssetController.php │ ├── BaseController.php │ └── OpenHandlerController.php │ ├── DataCollector │ ├── AuthCollector.php │ ├── EventCollector.php │ ├── FilesCollector.php │ ├── GateCollector.php │ ├── IlluminateRouteCollector.php │ ├── LaravelCollector.php │ ├── LogsCollector.php │ ├── MultiAuthCollector.php │ ├── QueryCollector.php │ ├── SessionCollector.php │ ├── SymfonyRequestCollector.php │ └── ViewCollector.php │ ├── Facade.php │ ├── JavascriptRenderer.php │ ├── LaravelDebugbar.php │ ├── LumenServiceProvider.php │ ├── Middleware │ └── Debugbar.php │ ├── Resources │ ├── laravel-debugbar.css │ └── vendor │ │ └── font-awesome │ │ ├── generator_config.txt │ │ └── style.css │ ├── ServiceProvider.php │ ├── Storage │ └── FilesystemStorage.php │ ├── Support │ └── Clockwork │ │ ├── ClockworkCollector.php │ │ └── Converter.php │ ├── SymfonyHttpDriver.php │ ├── Twig │ ├── Extension │ │ ├── Debug.php │ │ ├── Dump.php │ │ └── Stopwatch.php │ ├── Node │ │ └── StopwatchNode.php │ └── TokenParser │ │ └── StopwatchTokenParser.php │ ├── helpers.php │ └── migrations │ └── 2014_12_01_120000_create_phpdebugbar_storage_table.php ├── bin ├── php-parse ├── php-parse.bat ├── phpunit ├── phpunit.bat ├── psysh └── psysh.bat ├── caouecs └── laravel4-lang │ ├── .editorconfig │ ├── .gitignore │ ├── .php_cs │ ├── README.md │ ├── Source.md │ ├── ar │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── be │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── bg │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── bs │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ca │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── composer.json │ ├── cs │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── cy │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── da │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── de │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── el │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── es │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── fa │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── fi │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── fr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── gl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── he │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── hr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── hu │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── id │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── is │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── it │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ja │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ka │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── km │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ko │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── lt │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── me │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── mk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ms │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── nb │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ne │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── nl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── nn │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── pl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── pt-BR │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── pt │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ro │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── ru │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── sc │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── script │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── todo.php │ ├── sk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── sl │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── sq │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── sr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── sv │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── th │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── tk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── todo.md │ ├── tr │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── uk │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── vi │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── zh-CN │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ ├── zh-HK │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php │ └── zh-TW │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── classpreloader └── classpreloader │ ├── LICENSE │ ├── composer.json │ └── 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 ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── include_paths.php └── installed.json ├── dingo ├── api │ ├── .styleci.yml │ ├── LICENSE │ ├── composer.json │ ├── config │ │ └── api.php │ ├── readme.md │ └── src │ │ ├── Auth │ │ ├── Auth.php │ │ └── Provider │ │ │ ├── Authorization.php │ │ │ ├── Basic.php │ │ │ ├── JWT.php │ │ │ └── OAuth2.php │ │ ├── Console │ │ └── Command │ │ │ ├── Cache.php │ │ │ ├── Docs.php │ │ │ └── Routes.php │ │ ├── Contract │ │ ├── Auth │ │ │ └── Provider.php │ │ ├── Debug │ │ │ ├── ExceptionHandler.php │ │ │ └── MessageBagErrors.php │ │ ├── Http │ │ │ ├── Parser.php │ │ │ ├── RateLimit │ │ │ │ ├── HasRateLimiter.php │ │ │ │ └── Throttle.php │ │ │ ├── Request.php │ │ │ └── Validator.php │ │ ├── Routing │ │ │ └── Adapter.php │ │ └── Transformer │ │ │ └── Adapter.php │ │ ├── Dispatcher.php │ │ ├── Event │ │ ├── RequestWasMatched.php │ │ ├── ResponseIsMorphing.php │ │ └── ResponseWasMorphed.php │ │ ├── Exception │ │ ├── DeleteResourceFailedException.php │ │ ├── Handler.php │ │ ├── InternalHttpException.php │ │ ├── RateLimitExceededException.php │ │ ├── ResourceException.php │ │ ├── StoreResourceFailedException.php │ │ ├── UnknownVersionException.php │ │ ├── UpdateResourceFailedException.php │ │ └── ValidationHttpException.php │ │ ├── Facade │ │ ├── API.php │ │ └── Route.php │ │ ├── Http │ │ ├── FormRequest.php │ │ ├── InternalRequest.php │ │ ├── Middleware │ │ │ ├── Auth.php │ │ │ ├── PrepareController.php │ │ │ ├── RateLimit.php │ │ │ └── Request.php │ │ ├── Parser │ │ │ └── Accept.php │ │ ├── RateLimit │ │ │ ├── Handler.php │ │ │ └── Throttle │ │ │ │ ├── Authenticated.php │ │ │ │ ├── Route.php │ │ │ │ ├── Throttle.php │ │ │ │ └── Unauthenticated.php │ │ ├── Request.php │ │ ├── RequestValidator.php │ │ ├── Response.php │ │ ├── Response │ │ │ ├── Factory.php │ │ │ └── Format │ │ │ │ ├── Format.php │ │ │ │ ├── Json.php │ │ │ │ └── Jsonp.php │ │ └── Validation │ │ │ ├── Accept.php │ │ │ ├── Domain.php │ │ │ └── Prefix.php │ │ ├── Provider │ │ ├── DingoServiceProvider.php │ │ ├── HttpServiceProvider.php │ │ ├── LaravelServiceProvider.php │ │ ├── LumenServiceProvider.php │ │ ├── RoutingServiceProvider.php │ │ └── ServiceProvider.php │ │ ├── Routing │ │ ├── Adapter │ │ │ ├── Laravel.php │ │ │ └── Lumen.php │ │ ├── Helpers.php │ │ ├── ResourceRegistrar.php │ │ ├── Route.php │ │ ├── RouteCollection.php │ │ ├── Router.php │ │ └── UrlGenerator.php │ │ ├── Transformer │ │ ├── Adapter │ │ │ └── Fractal.php │ │ ├── Binding.php │ │ └── Factory.php │ │ └── helpers.php └── blueprint │ ├── .editorconfig │ ├── .styleci.yml │ ├── composer.json │ ├── readme.md │ └── src │ ├── Action.php │ ├── Annotation │ ├── Attribute.php │ ├── Attributes.php │ ├── Member.php │ ├── Method │ │ ├── Delete.php │ │ ├── Get.php │ │ ├── Method.php │ │ ├── Patch.php │ │ ├── Post.php │ │ └── Put.php │ ├── Parameter.php │ ├── Parameters.php │ ├── Request.php │ ├── Resource.php │ ├── Response.php │ ├── Transaction.php │ └── Versions.php │ ├── Blueprint.php │ ├── Resource.php │ ├── Section.php │ └── Writer.php ├── dnoegel └── php-xdg-base-dir │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Xdg.php │ └── tests │ └── XdgTest.php ├── doctrine ├── annotations │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Annotations │ │ ├── Annotation.php │ │ ├── Annotation │ │ ├── Attribute.php │ │ ├── Attributes.php │ │ ├── Enum.php │ │ ├── IgnoreAnnotation.php │ │ ├── Required.php │ │ └── Target.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 ├── cache │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── build.properties │ ├── build.xml │ ├── composer.json │ ├── 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 │ ├── phpunit.xml.dist │ └── tests │ │ ├── Doctrine │ │ └── Tests │ │ │ ├── Common │ │ │ └── Cache │ │ │ │ ├── ApcCacheTest.php │ │ │ │ ├── ApcuCacheTest.php │ │ │ │ ├── ArrayCacheTest.php │ │ │ │ ├── BaseFileCacheTest.php │ │ │ │ ├── CacheProviderTest.php │ │ │ │ ├── CacheTest.php │ │ │ │ ├── ChainCacheTest.php │ │ │ │ ├── CouchbaseCacheTest.php │ │ │ │ ├── FileCacheTest.php │ │ │ │ ├── FilesystemCacheTest.php │ │ │ │ ├── MemcacheCacheTest.php │ │ │ │ ├── MemcachedCacheTest.php │ │ │ │ ├── MongoDBCacheTest.php │ │ │ │ ├── PhpFileCacheTest.php │ │ │ │ ├── PredisCacheTest.php │ │ │ │ ├── RedisCacheTest.php │ │ │ │ ├── RiakCacheTest.php │ │ │ │ ├── SQLite3CacheTest.php │ │ │ │ ├── VoidCacheTest.php │ │ │ │ ├── WinCacheCacheTest.php │ │ │ │ ├── XcacheCacheTest.php │ │ │ │ └── ZendDataCacheTest.php │ │ │ └── DoctrineTestCase.php │ │ └── travis │ │ ├── php.ini │ │ └── phpunit.travis.xml ├── inflector │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── phpunit.xml.dist │ └── tests │ │ └── Doctrine │ │ └── Tests │ │ ├── Common │ │ └── Inflector │ │ │ └── InflectorTest.php │ │ ├── DoctrineTestCase.php │ │ └── TestInit.php ├── instantiator │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.install.sh │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── tests │ │ └── DoctrineTest │ │ ├── InstantiatorPerformance │ │ └── InstantiatorPerformanceEvent.php │ │ ├── InstantiatorTest │ │ ├── Exception │ │ │ ├── InvalidArgumentExceptionTest.php │ │ │ └── UnexpectedValueExceptionTest.php │ │ └── InstantiatorTest.php │ │ └── InstantiatorTestAsset │ │ ├── AbstractClassAsset.php │ │ ├── ArrayObjectAsset.php │ │ ├── ExceptionAsset.php │ │ ├── FinalExceptionAsset.php │ │ ├── PharAsset.php │ │ ├── PharExceptionAsset.php │ │ ├── SerializableArrayObjectAsset.php │ │ ├── SimpleSerializableAsset.php │ │ ├── SimpleTraitAsset.php │ │ ├── UnCloneableAsset.php │ │ ├── UnserializeExceptionArrayObjectAsset.php │ │ ├── WakeUpNoticesAsset.php │ │ └── XMLReaderAsset.php └── lexer │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ └── Doctrine │ └── Common │ └── Lexer │ └── AbstractLexer.php ├── fzaninotto └── faker │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── composer.json │ ├── phpunit.xml.dist │ ├── readme.md │ ├── src │ ├── Faker │ │ ├── Calculator │ │ │ ├── Iban.php │ │ │ └── Luhn.php │ │ ├── DefaultGenerator.php │ │ ├── Documentor.php │ │ ├── Factory.php │ │ ├── Generator.php │ │ ├── Guesser │ │ │ └── Name.php │ │ ├── ORM │ │ │ ├── CakePHP │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Doctrine │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Mandango │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel2 │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ └── Spot │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ ├── Provider │ │ │ ├── Address.php │ │ │ ├── Barcode.php │ │ │ ├── Base.php │ │ │ ├── Biased.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── File.php │ │ │ ├── Image.php │ │ │ ├── Internet.php │ │ │ ├── Lorem.php │ │ │ ├── Miscellaneous.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ ├── Text.php │ │ │ ├── UserAgent.php │ │ │ ├── Uuid.php │ │ │ ├── ar_JO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── ar_SA │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── at_AT │ │ │ │ └── Payment.php │ │ │ ├── bg_BG │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── bn_BD │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Utils.php │ │ │ ├── cs_CZ │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── da_DK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── de_AT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── de_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── de_DE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── el_GR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_AU │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_CA │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_GB │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_IN │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_NZ │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_PH │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_SG │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_UG │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_US │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_ZA │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_AR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_ES │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_PE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_VE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fa_IR │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fi_FI │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_CA │ │ │ │ ├── Address.php │ │ │ │ └── Person.php │ │ │ ├── fr_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fr_FR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── he_IL │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hr_HR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hu_HU │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── hy_AM │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── id_ID │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── is_IS │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── it_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── it_IT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ja_JP │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ka_GE │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── kk_KZ │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ko_KR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── lt_LT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── lv_LV │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── me_ME │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── mn_MN │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nb_NO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ne_NP │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_NL │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── pl_PL │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── pt_BR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── check_digit.php │ │ │ ├── pt_PT │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_MD │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_RO │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ru_RU │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── sk_SK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sl_SI │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sr_Cyrl_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_Latn_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sv_SE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── tr_TR │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── uk_UA │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── vi_VN │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── zh_CN │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ └── zh_TW │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ ├── UniqueGenerator.php │ │ └── ValidGenerator.php │ └── autoload.php │ └── test │ ├── Faker │ ├── Calculator │ │ ├── IbanTest.php │ │ └── LuhnTest.php │ ├── DefaultGeneratorTest.php │ ├── GeneratorTest.php │ └── Provider │ │ ├── AddressTest.php │ │ ├── BarcodeTest.php │ │ ├── BaseTest.php │ │ ├── BiasedTest.php │ │ ├── ColorTest.php │ │ ├── CompanyTest.php │ │ ├── DateTimeTest.php │ │ ├── ImageTest.php │ │ ├── InternetTest.php │ │ ├── LocalizationTest.php │ │ ├── LoremTest.php │ │ ├── MiscellaneousTest.php │ │ ├── PaymentTest.php │ │ ├── PersonTest.php │ │ ├── PhoneNumberTest.php │ │ ├── ProviderOverrideTest.php │ │ ├── TextTest.php │ │ ├── UserAgentTest.php │ │ ├── UuidTest.php │ │ ├── ar_JO │ │ └── InternetTest.php │ │ ├── ar_SA │ │ └── InternetTest.php │ │ ├── at_AT │ │ └── PaymentTest.php │ │ ├── bg_BG │ │ └── PaymentTest.php │ │ ├── bn_BD │ │ └── PersonTest.php │ │ ├── cs_CZ │ │ └── PersonTest.php │ │ ├── da_DK │ │ └── InternetTest.php │ │ ├── de_AT │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── de_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── de_DE │ │ └── InternetTest.php │ │ ├── en_AU │ │ └── AddressTest.php │ │ ├── en_CA │ │ └── AddressTest.php │ │ ├── en_IN │ │ └── AddressTest.php │ │ ├── en_NZ │ │ └── PhoneNumberTest.php │ │ ├── en_PH │ │ └── AddressTest.php │ │ ├── en_SG │ │ ├── AddressTest.php │ │ └── PhoneNumberTest.php │ │ ├── en_UG │ │ └── AddressTest.php │ │ ├── en_US │ │ ├── PaymentTest.php │ │ └── PhoneNumberTest.php │ │ ├── en_ZA │ │ ├── CompanyTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── es_ES │ │ └── PersonTest.php │ │ ├── fi_FI │ │ └── InternetTest.php │ │ ├── fr_BE │ │ └── PaymentTest.php │ │ ├── fr_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── fr_FR │ │ └── CompanyTest.php │ │ ├── id_ID │ │ └── PersonTest.php │ │ ├── it_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── it_IT │ │ ├── CompanyTest.php │ │ └── PersonTest.php │ │ ├── ja_JP │ │ └── PersonTest.php │ │ ├── mn_MN │ │ └── PersonTest.php │ │ ├── nl_BE │ │ └── PaymentTest.php │ │ ├── nl_NL │ │ └── CompanyTest.php │ │ ├── pt_BR │ │ ├── CompanyTest.php │ │ └── PersonTest.php │ │ ├── pt_PT │ │ ├── AddressTest.php │ │ ├── PersonTest.php │ │ └── PhoneNumberTest.php │ │ ├── ro_RO │ │ ├── PersonTest.php │ │ └── PhoneNumberTest.php │ │ ├── sv_SE │ │ └── PersonTest.php │ │ ├── uk_UA │ │ ├── AddressTest.php │ │ └── PhoneNumberTest.php │ │ └── zh_TW │ │ └── TextTest.php │ ├── documentor.php │ └── test.php ├── graham-campbell └── manager │ ├── LICENSE │ ├── composer.json │ └── src │ ├── AbstractManager.php │ ├── ConnectorInterface.php │ └── ManagerInterface.php ├── gregwar └── captcha │ ├── .gitignore │ ├── .travis.yml │ ├── CaptchaBuilder.php │ ├── CaptchaBuilderInterface.php │ ├── Font │ ├── captcha0.ttf │ ├── captcha1.ttf │ ├── captcha2.ttf │ ├── captcha3.ttf │ ├── captcha4.ttf │ └── captcha5.ttf │ ├── ImageFileHandler.php │ ├── LICENSE │ ├── PhraseBuilder.php │ ├── PhraseBuilderInterface.php │ ├── README.md │ ├── autoload.php │ ├── composer.json │ └── demo │ ├── demo.php │ ├── fingerprint.php │ ├── index.php │ ├── ocr.php │ └── output.php ├── guzzlehttp ├── guzzle │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── 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 │ │ ├── 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 │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── functions.php │ │ └── functions_include.php │ └── tests │ │ ├── AggregateExceptionTest.php │ │ ├── EachPromiseTest.php │ │ ├── FulfilledPromiseTest.php │ │ ├── NotPromiseInstance.php │ │ ├── PromiseTest.php │ │ ├── RejectedPromiseTest.php │ │ ├── RejectionExceptionTest.php │ │ ├── TaskQueueTest.php │ │ ├── Thennable.php │ │ ├── bootstrap.php │ │ └── functionsTest.php └── psr7 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── FnStream.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── MessageTrait.php │ ├── MultipartStream.php │ ├── NoSeekStream.php │ ├── PumpStream.php │ ├── Request.php │ ├── Response.php │ ├── ServerRequest.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamWrapper.php │ ├── UploadedFile.php │ ├── Uri.php │ ├── functions.php │ └── functions_include.php │ └── tests │ ├── AppendStreamTest.php │ ├── BufferStreamTest.php │ ├── CachingStreamTest.php │ ├── DroppingStreamTest.php │ ├── FnStreamTest.php │ ├── FunctionsTest.php │ ├── InflateStreamTest.php │ ├── LazyOpenStreamTest.php │ ├── LimitStreamTest.php │ ├── MultipartStreamTest.php │ ├── NoSeekStreamTest.php │ ├── PumpStreamTest.php │ ├── RequestTest.php │ ├── ResponseTest.php │ ├── ServerRequestTest.php │ ├── StreamDecoratorTraitTest.php │ ├── StreamTest.php │ ├── StreamWrapperTest.php │ ├── UploadedFileTest.php │ ├── UriTest.php │ └── bootstrap.php ├── hamcrest └── hamcrest-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .gush.yml │ ├── .travis.yml │ ├── CHANGES.txt │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.txt │ ├── composer.json │ ├── generator │ ├── FactoryCall.php │ ├── FactoryClass.php │ ├── FactoryFile.php │ ├── FactoryGenerator.php │ ├── FactoryMethod.php │ ├── FactoryParameter.php │ ├── GlobalFunctionFile.php │ ├── StaticMethodFile.php │ ├── parts │ │ ├── file_header.txt │ │ ├── functions_footer.txt │ │ ├── functions_header.txt │ │ ├── functions_imports.txt │ │ ├── matchers_footer.txt │ │ ├── matchers_header.txt │ │ └── matchers_imports.txt │ └── run.php │ ├── hamcrest │ ├── Hamcrest.php │ └── Hamcrest │ │ ├── Arrays │ │ ├── IsArray.php │ │ ├── IsArrayContaining.php │ │ ├── IsArrayContainingInAnyOrder.php │ │ ├── IsArrayContainingInOrder.php │ │ ├── IsArrayContainingKey.php │ │ ├── IsArrayContainingKeyValuePair.php │ │ ├── IsArrayWithSize.php │ │ ├── MatchingOnce.php │ │ └── SeriesMatchingOnce.php │ │ ├── AssertionError.php │ │ ├── BaseDescription.php │ │ ├── BaseMatcher.php │ │ ├── Collection │ │ ├── IsEmptyTraversable.php │ │ └── IsTraversableWithSize.php │ │ ├── Core │ │ ├── AllOf.php │ │ ├── AnyOf.php │ │ ├── CombinableMatcher.php │ │ ├── DescribedAs.php │ │ ├── Every.php │ │ ├── HasToString.php │ │ ├── Is.php │ │ ├── IsAnything.php │ │ ├── IsCollectionContaining.php │ │ ├── IsEqual.php │ │ ├── IsIdentical.php │ │ ├── IsInstanceOf.php │ │ ├── IsNot.php │ │ ├── IsNull.php │ │ ├── IsSame.php │ │ ├── IsTypeOf.php │ │ ├── Set.php │ │ └── ShortcutCombination.php │ │ ├── Description.php │ │ ├── DiagnosingMatcher.php │ │ ├── FeatureMatcher.php │ │ ├── Internal │ │ └── SelfDescribingValue.php │ │ ├── Matcher.php │ │ ├── MatcherAssert.php │ │ ├── Matchers.php │ │ ├── NullDescription.php │ │ ├── Number │ │ ├── IsCloseTo.php │ │ └── OrderingComparison.php │ │ ├── SelfDescribing.php │ │ ├── StringDescription.php │ │ ├── Text │ │ ├── IsEmptyString.php │ │ ├── IsEqualIgnoringCase.php │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ ├── MatchesPattern.php │ │ ├── StringContains.php │ │ ├── StringContainsIgnoringCase.php │ │ ├── StringContainsInOrder.php │ │ ├── StringEndsWith.php │ │ ├── StringStartsWith.php │ │ └── SubstringMatcher.php │ │ ├── Type │ │ ├── IsArray.php │ │ ├── IsBoolean.php │ │ ├── IsCallable.php │ │ ├── IsDouble.php │ │ ├── IsInteger.php │ │ ├── IsNumeric.php │ │ ├── IsObject.php │ │ ├── IsResource.php │ │ ├── IsScalar.php │ │ └── IsString.php │ │ ├── TypeSafeDiagnosingMatcher.php │ │ ├── TypeSafeMatcher.php │ │ ├── Util.php │ │ └── Xml │ │ └── HasXPath.php │ └── tests │ ├── Hamcrest │ ├── AbstractMatcherTest.php │ ├── Array │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ ├── IsArrayContainingInOrderTest.php │ │ ├── IsArrayContainingKeyTest.php │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ ├── IsArrayContainingTest.php │ │ ├── IsArrayTest.php │ │ └── IsArrayWithSizeTest.php │ ├── BaseMatcherTest.php │ ├── Collection │ │ ├── IsEmptyTraversableTest.php │ │ └── IsTraversableWithSizeTest.php │ ├── Core │ │ ├── AllOfTest.php │ │ ├── AnyOfTest.php │ │ ├── CombinableMatcherTest.php │ │ ├── DescribedAsTest.php │ │ ├── EveryTest.php │ │ ├── HasToStringTest.php │ │ ├── IsAnythingTest.php │ │ ├── IsCollectionContainingTest.php │ │ ├── IsEqualTest.php │ │ ├── IsIdenticalTest.php │ │ ├── IsInstanceOfTest.php │ │ ├── IsNotTest.php │ │ ├── IsNullTest.php │ │ ├── IsSameTest.php │ │ ├── IsTest.php │ │ ├── IsTypeOfTest.php │ │ ├── SampleBaseClass.php │ │ ├── SampleSubClass.php │ │ └── SetTest.php │ ├── FeatureMatcherTest.php │ ├── MatcherAssertTest.php │ ├── Number │ │ ├── IsCloseToTest.php │ │ └── OrderingComparisonTest.php │ ├── StringDescriptionTest.php │ ├── Text │ │ ├── IsEmptyStringTest.php │ │ ├── IsEqualIgnoringCaseTest.php │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ ├── MatchesPatternTest.php │ │ ├── StringContainsIgnoringCaseTest.php │ │ ├── StringContainsInOrderTest.php │ │ ├── StringContainsTest.php │ │ ├── StringEndsWithTest.php │ │ └── StringStartsWithTest.php │ ├── Type │ │ ├── IsArrayTest.php │ │ ├── IsBooleanTest.php │ │ ├── IsCallableTest.php │ │ ├── IsDoubleTest.php │ │ ├── IsIntegerTest.php │ │ ├── IsNumericTest.php │ │ ├── IsObjectTest.php │ │ ├── IsResourceTest.php │ │ ├── IsScalarTest.php │ │ └── IsStringTest.php │ ├── UtilTest.php │ └── Xml │ │ └── HasXPathTest.php │ ├── bootstrap.php │ └── phpunit.xml.dist ├── hashids └── hashids │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Hashids.php │ ├── HashidsException.php │ ├── HashidsInterface.php │ └── Math.php ├── intervention └── image │ ├── LICENSE │ ├── composer.json │ ├── 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 │ │ ├── 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 │ │ ├── ImageServiceProviderLaravel5.php │ │ ├── ImageServiceProviderLeague.php │ │ ├── ImageServiceProviderLumen.php │ │ ├── Imagick │ │ ├── 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 │ │ ├── Point.php │ │ ├── Response.php │ │ └── Size.php │ └── config │ └── config.php ├── jakub-onderka ├── php-console-color │ ├── .gitignore │ ├── .travis.yml │ ├── build.xml │ ├── composer.json │ ├── example.php │ ├── phpunit.xml │ ├── src │ │ └── JakubOnderka │ │ │ └── PhpConsoleColor │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ └── tests │ │ ├── JakubOnderka │ │ └── PhpConsoleColor │ │ │ └── ConsoleColorTest.php │ │ └── bootstrap.php └── php-console-highlighter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── examples │ ├── snippet.php │ ├── whole_file.php │ └── whole_file_line_numbers.php │ ├── phpunit.xml │ ├── src │ └── JakubOnderka │ │ └── PhpConsoleHighlighter │ │ └── Highlighter.php │ └── tests │ ├── JakubOnderka │ └── PhpConsoleHighligter │ │ └── HigligterTest.php │ └── bootstrap.php ├── jeremeamia └── SuperClosure │ ├── LICENSE.md │ ├── composer.json │ └── src │ ├── Analyzer │ ├── AstAnalyzer.php │ ├── ClosureAnalyzer.php │ ├── Token.php │ ├── TokenAnalyzer.php │ └── Visitor │ │ ├── ClosureLocatorVisitor.php │ │ ├── MagicConstantVisitor.php │ │ └── ThisDetectorVisitor.php │ ├── Exception │ ├── ClosureAnalysisException.php │ ├── ClosureUnserializationException.php │ └── SuperClosureException.php │ ├── SerializableClosure.php │ ├── Serializer.php │ └── SerializerInterface.php ├── laravel └── framework │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ └── Illuminate │ ├── Auth │ ├── Access │ │ ├── AuthorizationException.php │ │ ├── Gate.php │ │ ├── HandlesAuthorization.php │ │ └── Response.php │ ├── AuthManager.php │ ├── AuthServiceProvider.php │ ├── Authenticatable.php │ ├── AuthenticationException.php │ ├── Console │ │ ├── ClearResetsCommand.php │ │ ├── MakeAuthCommand.php │ │ └── stubs │ │ │ └── make │ │ │ ├── controllers │ │ │ └── HomeController.stub │ │ │ ├── routes.stub │ │ │ └── views │ │ │ ├── auth │ │ │ ├── emails │ │ │ │ └── password.stub │ │ │ ├── login.stub │ │ │ ├── passwords │ │ │ │ ├── email.stub │ │ │ │ └── reset.stub │ │ │ └── register.stub │ │ │ ├── home.stub │ │ │ ├── layouts │ │ │ └── app.stub │ │ │ └── welcome.stub │ ├── CreatesUserProviders.php │ ├── DatabaseUserProvider.php │ ├── EloquentUserProvider.php │ ├── Events │ │ ├── Attempting.php │ │ ├── Failed.php │ │ ├── Lockout.php │ │ ├── Login.php │ │ └── Logout.php │ ├── GenericUser.php │ ├── GuardHelpers.php │ ├── Middleware │ │ └── AuthenticateWithBasicAuth.php │ ├── Passwords │ │ ├── CanResetPassword.php │ │ ├── DatabaseTokenRepository.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerManager.php │ │ ├── PasswordResetServiceProvider.php │ │ └── TokenRepositoryInterface.php │ ├── RequestGuard.php │ ├── SessionGuard.php │ ├── TokenGuard.php │ └── composer.json │ ├── Broadcasting │ ├── BroadcastEvent.php │ ├── BroadcastManager.php │ ├── BroadcastServiceProvider.php │ ├── Broadcasters │ │ ├── LogBroadcaster.php │ │ ├── PusherBroadcaster.php │ │ └── RedisBroadcaster.php │ └── composer.json │ ├── Bus │ ├── BusServiceProvider.php │ ├── Dispatcher.php │ ├── Queueable.php │ └── composer.json │ ├── Cache │ ├── ApcStore.php │ ├── ApcWrapper.php │ ├── ArrayStore.php │ ├── CacheManager.php │ ├── CacheServiceProvider.php │ ├── Console │ │ ├── CacheTableCommand.php │ │ ├── ClearCommand.php │ │ └── stubs │ │ │ └── cache.stub │ ├── DatabaseStore.php │ ├── Events │ │ ├── CacheHit.php │ │ ├── CacheMissed.php │ │ ├── KeyForgotten.php │ │ └── KeyWritten.php │ ├── FileStore.php │ ├── MemcachedConnector.php │ ├── MemcachedStore.php │ ├── NullStore.php │ ├── RateLimiter.php │ ├── RedisStore.php │ ├── RedisTaggedCache.php │ ├── Repository.php │ ├── RetrievesMultipleKeys.php │ ├── TagSet.php │ ├── TaggableStore.php │ ├── TaggedCache.php │ └── composer.json │ ├── Config │ ├── Repository.php │ └── composer.json │ ├── Console │ ├── AppNamespaceDetectorTrait.php │ ├── Application.php │ ├── Command.php │ ├── ConfirmableTrait.php │ ├── Events │ │ └── ArtisanStarting.php │ ├── GeneratorCommand.php │ ├── OutputStyle.php │ ├── Parser.php │ ├── ScheduleServiceProvider.php │ ├── Scheduling │ │ ├── CallbackEvent.php │ │ ├── Event.php │ │ ├── Schedule.php │ │ └── ScheduleRunCommand.php │ └── composer.json │ ├── Container │ ├── Container.php │ ├── ContextualBindingBuilder.php │ └── composer.json │ ├── Contracts │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── Gate.php │ │ ├── Authenticatable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ ├── Guard.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerFactory.php │ │ ├── Registrar.php │ │ ├── StatefulGuard.php │ │ ├── SupportsBasicAuth.php │ │ └── UserProvider.php │ ├── Broadcasting │ │ ├── Broadcaster.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── ShouldBroadcastNow.php │ ├── Bus │ │ ├── Dispatcher.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 │ │ ├── QueueableCollection.php │ │ ├── QueueableEntity.php │ │ └── ShouldQueue.php │ ├── Redis │ │ └── Database.php │ ├── Routing │ │ ├── Registrar.php │ │ ├── ResponseFactory.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 │ └── composer.json │ ├── Cookie │ ├── CookieJar.php │ ├── CookieServiceProvider.php │ ├── Middleware │ │ ├── AddQueuedCookiesToResponse.php │ │ └── EncryptCookies.php │ └── composer.json │ ├── Database │ ├── Capsule │ │ └── Manager.php │ ├── Connection.php │ ├── ConnectionInterface.php │ ├── ConnectionResolver.php │ ├── ConnectionResolverInterface.php │ ├── Connectors │ │ ├── ConnectionFactory.php │ │ ├── Connector.php │ │ ├── ConnectorInterface.php │ │ ├── MySqlConnector.php │ │ ├── PostgresConnector.php │ │ ├── SQLiteConnector.php │ │ └── SqlServerConnector.php │ ├── Console │ │ ├── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ ├── RollbackCommand.php │ │ │ └── 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 │ │ ├── Scope.php │ │ ├── ScopeInterface.php │ │ ├── SoftDeletes.php │ │ └── SoftDeletingScope.php │ ├── Events │ │ ├── ConnectionEvent.php │ │ ├── QueryExecuted.php │ │ ├── TransactionBeginning.php │ │ ├── TransactionCommitted.php │ │ └── TransactionRolledBack.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 │ │ ├── JsonExpression.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 │ └── composer.json │ ├── Encryption │ ├── BaseEncrypter.php │ ├── Encrypter.php │ ├── EncryptionServiceProvider.php │ ├── McryptEncrypter.php │ └── composer.json │ ├── Events │ ├── CallQueuedHandler.php │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ └── composer.json │ ├── Filesystem │ ├── ClassFinder.php │ ├── Filesystem.php │ ├── FilesystemAdapter.php │ ├── FilesystemManager.php │ ├── FilesystemServiceProvider.php │ └── composer.json │ ├── Foundation │ ├── AliasLoader.php │ ├── Application.php │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ ├── AuthorizesRequests.php │ │ │ └── AuthorizesResources.php │ │ ├── AuthenticatesAndRegistersUsers.php │ │ ├── AuthenticatesUsers.php │ │ ├── RedirectsUsers.php │ │ ├── RegistersUsers.php │ │ ├── ResetsPasswords.php │ │ ├── ThrottlesLogins.php │ │ └── User.php │ ├── Bootstrap │ │ ├── BootProviders.php │ │ ├── ConfigureLogging.php │ │ ├── DetectEnvironment.php │ │ ├── HandleExceptions.php │ │ ├── LoadConfiguration.php │ │ ├── RegisterFacades.php │ │ ├── RegisterProviders.php │ │ └── SetRequestForConsole.php │ ├── Bus │ │ └── DispatchesJobs.php │ ├── ComposerScripts.php │ ├── Console │ │ ├── AppNameCommand.php │ │ ├── ClearCompiledCommand.php │ │ ├── ConfigCacheCommand.php │ │ ├── ConfigClearCommand.php │ │ ├── ConsoleMakeCommand.php │ │ ├── DownCommand.php │ │ ├── EnvironmentCommand.php │ │ ├── EventGenerateCommand.php │ │ ├── EventMakeCommand.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 │ │ │ ├── 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 │ │ │ ├── Authorize.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── VerifyCsrfToken.php │ │ │ └── VerifyPostSize.php │ ├── Inspiring.php │ ├── ProviderRepository.php │ ├── Providers │ │ ├── ArtisanServiceProvider.php │ │ ├── ComposerServiceProvider.php │ │ ├── ConsoleSupportServiceProvider.php │ │ └── FoundationServiceProvider.php │ ├── Support │ │ └── Providers │ │ │ ├── AuthServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ ├── Testing │ │ ├── Concerns │ │ │ ├── ImpersonatesUsers.php │ │ │ ├── InteractsWithAuthentication.php │ │ │ ├── InteractsWithConsole.php │ │ │ ├── InteractsWithContainer.php │ │ │ ├── InteractsWithDatabase.php │ │ │ ├── InteractsWithPages.php │ │ │ ├── InteractsWithSession.php │ │ │ ├── MakesHttpRequests.php │ │ │ └── MocksApplicationServices.php │ │ ├── Constraints │ │ │ ├── FormFieldConstraint.php │ │ │ ├── HasElement.php │ │ │ ├── HasInElement.php │ │ │ ├── HasLink.php │ │ │ ├── HasSource.php │ │ │ ├── HasText.php │ │ │ ├── HasValue.php │ │ │ ├── IsChecked.php │ │ │ ├── IsSelected.php │ │ │ ├── PageConstraint.php │ │ │ └── ReversePageConstraint.php │ │ ├── DatabaseMigrations.php │ │ ├── DatabaseTransactions.php │ │ ├── HttpException.php │ │ ├── TestCase.php │ │ ├── WithoutEvents.php │ │ └── WithoutMiddleware.php │ ├── Validation │ │ ├── ValidatesRequests.php │ │ └── ValidationException.php │ └── helpers.php │ ├── Hashing │ ├── BcryptHasher.php │ ├── HashServiceProvider.php │ └── composer.json │ ├── Http │ ├── Exception │ │ ├── HttpResponseException.php │ │ └── PostTooLargeException.php │ ├── JsonResponse.php │ ├── Middleware │ │ ├── CheckResponseForModifications.php │ │ └── FrameGuard.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── Response.php │ ├── ResponseTrait.php │ ├── UploadedFile.php │ └── composer.json │ ├── Log │ ├── Writer.php │ └── composer.json │ ├── Mail │ ├── Events │ │ └── MessageSending.php │ ├── MailServiceProvider.php │ ├── Mailer.php │ ├── Message.php │ ├── Transport │ │ ├── LogTransport.php │ │ ├── MailgunTransport.php │ │ ├── MandrillTransport.php │ │ ├── SesTransport.php │ │ ├── SparkPostTransport.php │ │ └── Transport.php │ ├── TransportManager.php │ └── composer.json │ ├── Pagination │ ├── AbstractPaginator.php │ ├── BootstrapFourNextPreviousButtonRendererTrait.php │ ├── BootstrapFourPresenter.php │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php │ ├── BootstrapThreePresenter.php │ ├── LengthAwarePaginator.php │ ├── PaginationServiceProvider.php │ ├── Paginator.php │ ├── SimpleBootstrapFourPresenter.php │ ├── SimpleBootstrapThreePresenter.php │ ├── UrlWindow.php │ ├── UrlWindowPresenterTrait.php │ └── composer.json │ ├── Pipeline │ ├── Hub.php │ ├── Pipeline.php │ ├── PipelineServiceProvider.php │ └── composer.json │ ├── Queue │ ├── BeanstalkdQueue.php │ ├── CallQueuedHandler.php │ ├── Capsule │ │ └── Manager.php │ ├── Connectors │ │ ├── BeanstalkdConnector.php │ │ ├── ConnectorInterface.php │ │ ├── DatabaseConnector.php │ │ ├── NullConnector.php │ │ ├── RedisConnector.php │ │ ├── SqsConnector.php │ │ └── SyncConnector.php │ ├── Console │ │ ├── FailedTableCommand.php │ │ ├── FlushFailedCommand.php │ │ ├── ForgetFailedCommand.php │ │ ├── ListFailedCommand.php │ │ ├── ListenCommand.php │ │ ├── RestartCommand.php │ │ ├── RetryCommand.php │ │ ├── TableCommand.php │ │ ├── WorkCommand.php │ │ └── stubs │ │ │ ├── failed_jobs.stub │ │ │ └── jobs.stub │ ├── ConsoleServiceProvider.php │ ├── DatabaseQueue.php │ ├── Events │ │ ├── JobExceptionOccurred.php │ │ ├── JobFailed.php │ │ ├── JobProcessed.php │ │ ├── JobProcessing.php │ │ └── WorkerStopping.php │ ├── Failed │ │ ├── DatabaseFailedJobProvider.php │ │ ├── FailedJobProviderInterface.php │ │ └── NullFailedJobProvider.php │ ├── IlluminateQueueClosure.php │ ├── InteractsWithQueue.php │ ├── Jobs │ │ ├── BeanstalkdJob.php │ │ ├── DatabaseJob.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 │ └── composer.json │ ├── Redis │ ├── Database.php │ ├── RedisServiceProvider.php │ └── composer.json │ ├── Routing │ ├── Console │ │ ├── ControllerMakeCommand.php │ │ ├── MiddlewareMakeCommand.php │ │ └── stubs │ │ │ ├── controller.plain.stub │ │ │ ├── controller.stub │ │ │ └── middleware.stub │ ├── Controller.php │ ├── ControllerDispatcher.php │ ├── ControllerInspector.php │ ├── ControllerMiddlewareOptions.php │ ├── Events │ │ └── RouteMatched.php │ ├── Exceptions │ │ └── UrlGenerationException.php │ ├── Matching │ │ ├── HostValidator.php │ │ ├── MethodValidator.php │ │ ├── SchemeValidator.php │ │ ├── UriValidator.php │ │ └── ValidatorInterface.php │ ├── Middleware │ │ └── ThrottleRequests.php │ ├── Pipeline.php │ ├── Redirector.php │ ├── ResourceRegistrar.php │ ├── ResponseFactory.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteDependencyResolverTrait.php │ ├── Router.php │ ├── RoutingServiceProvider.php │ ├── UrlGenerator.php │ └── composer.json │ ├── Session │ ├── CacheBasedSessionHandler.php │ ├── Console │ │ ├── SessionTableCommand.php │ │ └── stubs │ │ │ └── database.stub │ ├── CookieSessionHandler.php │ ├── DatabaseSessionHandler.php │ ├── EncryptedStore.php │ ├── ExistenceAwareInterface.php │ ├── FileSessionHandler.php │ ├── LegacyDatabaseSessionHandler.php │ ├── Middleware │ │ └── StartSession.php │ ├── SessionInterface.php │ ├── SessionManager.php │ ├── SessionServiceProvider.php │ ├── Store.php │ ├── TokenMismatchException.php │ └── composer.json │ ├── Support │ ├── AggregateServiceProvider.php │ ├── Arr.php │ ├── ClassLoader.php │ ├── Collection.php │ ├── Composer.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 │ ├── composer.json │ └── helpers.php │ ├── Translation │ ├── ArrayLoader.php │ ├── FileLoader.php │ ├── LoaderInterface.php │ ├── TranslationServiceProvider.php │ ├── Translator.php │ └── composer.json │ ├── Validation │ ├── DatabasePresenceVerifier.php │ ├── Factory.php │ ├── PresenceVerifierInterface.php │ ├── ValidatesWhenResolvedTrait.php │ ├── ValidationException.php │ ├── ValidationServiceProvider.php │ ├── Validator.php │ └── composer.json │ └── View │ ├── Compilers │ ├── BladeCompiler.php │ ├── Compiler.php │ └── CompilerInterface.php │ ├── Engines │ ├── CompilerEngine.php │ ├── Engine.php │ ├── EngineInterface.php │ ├── EngineResolver.php │ └── PhpEngine.php │ ├── Expression.php │ ├── Factory.php │ ├── FileViewFinder.php │ ├── Middleware │ └── ShareErrorsFromSession.php │ ├── View.php │ ├── ViewFinderInterface.php │ ├── ViewServiceProvider.php │ └── composer.json ├── league ├── flysystem │ ├── LICENSE │ ├── build │ │ ├── handle_brew_pkg.sh │ │ ├── osx_install_composer.sh │ │ └── prepare_osx_env.sh │ ├── composer.json │ └── src │ │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractFtpAdapter.php │ │ ├── Ftp.php │ │ ├── Ftpd.php │ │ ├── Local.php │ │ ├── NullAdapter.php │ │ ├── Polyfill │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ ├── StreamedCopyTrait.php │ │ │ ├── StreamedReadingTrait.php │ │ │ ├── StreamedTrait.php │ │ │ └── StreamedWritingTrait.php │ │ └── SynologyFtp.php │ │ ├── AdapterInterface.php │ │ ├── Config.php │ │ ├── ConfigAwareTrait.php │ │ ├── Directory.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ ├── Filesystem.php │ │ ├── FilesystemInterface.php │ │ ├── Handler.php │ │ ├── MountManager.php │ │ ├── NotSupportedException.php │ │ ├── Plugin │ │ ├── AbstractPlugin.php │ │ ├── EmptyDir.php │ │ ├── ForcedCopy.php │ │ ├── ForcedRename.php │ │ ├── GetWithMetadata.php │ │ ├── ListFiles.php │ │ ├── ListPaths.php │ │ ├── ListWith.php │ │ ├── PluggableTrait.php │ │ └── PluginNotFoundException.php │ │ ├── PluginInterface.php │ │ ├── ReadInterface.php │ │ ├── RootViolationException.php │ │ ├── UnreadableFileException.php │ │ ├── Util.php │ │ └── Util │ │ ├── ContentListingFormatter.php │ │ ├── MimeType.php │ │ └── StreamHasher.php └── fractal │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Manager.php │ ├── Pagination │ ├── Cursor.php │ ├── CursorInterface.php │ ├── IlluminatePaginatorAdapter.php │ ├── PagerfantaPaginatorAdapter.php │ ├── PaginatorInterface.php │ └── ZendFrameworkPaginatorAdapter.php │ ├── ParamBag.php │ ├── Resource │ ├── Collection.php │ ├── Item.php │ ├── NullResource.php │ ├── ResourceAbstract.php │ └── ResourceInterface.php │ ├── Scope.php │ ├── Serializer │ ├── ArraySerializer.php │ ├── DataArraySerializer.php │ ├── JsonApiSerializer.php │ └── SerializerAbstract.php │ └── TransformerAbstract.php ├── maximebf └── debugbar │ ├── LICENSE │ ├── composer.json │ └── src │ └── DebugBar │ ├── Bridge │ ├── CacheCacheCollector.php │ ├── DoctrineCollector.php │ ├── MonologCollector.php │ ├── Propel2Collector.php │ ├── PropelCollector.php │ ├── SlimCollector.php │ ├── SwiftMailer │ │ ├── SwiftLogCollector.php │ │ └── SwiftMailCollector.php │ └── Twig │ │ ├── TraceableTwigEnvironment.php │ │ ├── TraceableTwigTemplate.php │ │ └── TwigCollector.php │ ├── DataCollector │ ├── AggregatedCollector.php │ ├── AssetProvider.php │ ├── ConfigCollector.php │ ├── DataCollector.php │ ├── DataCollectorInterface.php │ ├── ExceptionsCollector.php │ ├── LocalizationCollector.php │ ├── MemoryCollector.php │ ├── MessagesAggregateInterface.php │ ├── MessagesCollector.php │ ├── PDO │ │ ├── PDOCollector.php │ │ ├── TraceablePDO.php │ │ ├── TraceablePDOStatement.php │ │ └── TracedStatement.php │ ├── PhpInfoCollector.php │ ├── Renderable.php │ ├── RequestDataCollector.php │ └── TimeDataCollector.php │ ├── DataFormatter │ ├── DataFormatter.php │ └── DataFormatterInterface.php │ ├── DebugBar.php │ ├── DebugBarException.php │ ├── HttpDriverInterface.php │ ├── JavascriptRenderer.php │ ├── OpenHandler.php │ ├── PhpHttpDriver.php │ ├── RequestIdGenerator.php │ ├── RequestIdGeneratorInterface.php │ ├── Resources │ ├── debugbar.css │ ├── debugbar.js │ ├── openhandler.css │ ├── openhandler.js │ ├── vendor │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── highlightjs │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ │ └── github.css │ │ └── jquery │ │ │ └── dist │ │ │ └── jquery.min.js │ ├── widgets.css │ ├── widgets.js │ └── widgets │ │ ├── mails │ │ ├── widget.css │ │ └── widget.js │ │ ├── sqlqueries │ │ ├── widget.css │ │ └── widget.js │ │ └── templates │ │ ├── widget.css │ │ └── widget.js │ ├── StandardDebugBar.php │ └── Storage │ ├── FileStorage.php │ ├── MemcachedStorage.php │ ├── PdoStorage.php │ ├── RedisStorage.php │ ├── StorageInterface.php │ └── pdo_storage_schema.sql ├── mockery └── mockery │ ├── .coveralls.yml │ ├── .gitignore │ ├── .php_cs │ ├── .scrutinizer.yml │ ├── .styleci.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── conf.py │ ├── cookbook │ │ ├── default_expectations.rst │ │ ├── detecting_mock_objects.rst │ │ ├── index.rst │ │ ├── map.rst.inc │ │ └── mocking_hard_dependencies.rst │ ├── getting_started │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── map.rst.inc │ │ ├── simple_example.rst │ │ └── upgrading.rst │ ├── index.rst │ └── reference │ │ ├── argument_validation.rst │ │ ├── demeter_chains.rst │ │ ├── expectations.rst │ │ ├── final_methods_classes.rst │ │ ├── index.rst │ │ ├── instance_mocking.rst │ │ ├── magic_methods.rst │ │ ├── map.rst.inc │ │ ├── mockery │ │ ├── configuration.rst │ │ ├── exceptions.rst │ │ ├── gotchas.rst │ │ ├── index.rst │ │ └── reserved_method_names.rst │ │ ├── object_recording.rst │ │ ├── partial_mocks.rst │ │ ├── pass_by_reference_behaviours.rst │ │ ├── phpunit_integration.rst │ │ ├── public_properties.rst │ │ ├── public_static_properties.rst │ │ ├── quick_examples.rst │ │ └── startup_methods.rst │ ├── examples │ └── starship │ │ ├── Bootstrap.php │ │ ├── Starship.php │ │ └── StarshipTest.php │ ├── library │ ├── Mockery.php │ └── Mockery │ │ ├── Adapter │ │ └── Phpunit │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ ├── MockeryTestCase.php │ │ │ └── TestListener.php │ │ ├── CompositeExpectation.php │ │ ├── Configuration.php │ │ ├── Container.php │ │ ├── CountValidator │ │ ├── AtLeast.php │ │ ├── AtMost.php │ │ ├── CountValidatorAbstract.php │ │ ├── Exact.php │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── InvalidCountException.php │ │ ├── InvalidOrderException.php │ │ ├── NoMatchingExpectationException.php │ │ └── RuntimeException.php │ │ ├── Expectation.php │ │ ├── ExpectationDirector.php │ │ ├── ExpectationInterface.php │ │ ├── Generator │ │ ├── CachingGenerator.php │ │ ├── DefinedTargetClass.php │ │ ├── Generator.php │ │ ├── Method.php │ │ ├── MockConfiguration.php │ │ ├── MockConfigurationBuilder.php │ │ ├── MockDefinition.php │ │ ├── Parameter.php │ │ ├── StringManipulation │ │ │ └── Pass │ │ │ │ ├── CallTypeHintPass.php │ │ │ │ ├── ClassNamePass.php │ │ │ │ ├── ClassPass.php │ │ │ │ ├── InstanceMockPass.php │ │ │ │ ├── InterfacePass.php │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ ├── Pass.php │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ └── RemoveUnserializeForInternalSerializableClassesPass.php │ │ ├── StringManipulationGenerator.php │ │ ├── TargetClass.php │ │ └── UndefinedTargetClass.php │ │ ├── Instantiator.php │ │ ├── Loader.php │ │ ├── Loader │ │ ├── EvalLoader.php │ │ ├── Loader.php │ │ └── RequireLoader.php │ │ ├── Matcher │ │ ├── Any.php │ │ ├── AnyOf.php │ │ ├── Closure.php │ │ ├── Contains.php │ │ ├── Ducktype.php │ │ ├── HasKey.php │ │ ├── HasValue.php │ │ ├── MatcherAbstract.php │ │ ├── MustBe.php │ │ ├── Not.php │ │ ├── NotAnyOf.php │ │ ├── Subset.php │ │ └── Type.php │ │ ├── MethodCall.php │ │ ├── Mock.php │ │ ├── MockInterface.php │ │ ├── ReceivedMethodCalls.php │ │ ├── Recorder.php │ │ ├── Undefined.php │ │ ├── VerificationDirector.php │ │ └── VerificationExpectation.php │ ├── package.xml │ ├── phpunit.xml.dist │ ├── tests │ ├── Bootstrap.php │ └── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── DemeterChainTest.php │ │ ├── ExpectationTest.php │ │ ├── Generator │ │ ├── DefinedTargetClassTest.php │ │ ├── MockConfigurationTest.php │ │ └── StringManipulation │ │ │ └── Pass │ │ │ ├── CallTypeHintPassTest.php │ │ │ ├── ClassNamePassTest.php │ │ │ ├── InstanceMockPassTest.php │ │ │ └── InterfacePassTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── Loader │ │ ├── EvalLoaderTest.php │ │ ├── LoaderTestCase.php │ │ └── RequireLoaderTest.php │ │ ├── LoaderTest.php │ │ ├── MockClassWithFinalWakeupTest.php │ │ ├── MockClassWithUnknownTypeHintTest.php │ │ ├── MockTest.php │ │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php │ │ ├── MockingParameterAndReturnTypesTest.php │ │ ├── MockingProtectedMethodsTest.php │ │ ├── MockingVariadicArgumentsTest.php │ │ ├── NamedMockTest.php │ │ ├── RecorderTest.php │ │ ├── SpyTest.php │ │ ├── Test │ │ └── Generator │ │ │ └── MockConfigurationBuilderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ └── file.txt │ └── travis │ ├── after_script.sh │ ├── before_script.sh │ ├── extra.ini │ ├── install.sh │ └── script.sh ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.mdown │ ├── LICENSE │ ├── README.mdown │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SlackHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── FluentdFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DeduplicationHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HandlerWrapperTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── SlackHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SwiftMailerHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ ├── WhatFailureGroupHandlerTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── mtdowling └── cron-expression │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ └── Cron │ │ ├── AbstractField.php │ │ ├── CronExpression.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ ├── MonthField.php │ │ └── YearField.php │ └── tests │ └── Cron │ ├── AbstractFieldTest.php │ ├── CronExpressionTest.php │ ├── DayOfMonthFieldTest.php │ ├── DayOfWeekFieldTest.php │ ├── FieldFactoryTest.php │ ├── HoursFieldTest.php │ ├── MinutesFieldTest.php │ ├── MonthFieldTest.php │ └── YearFieldTest.php ├── namshi └── jose │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ └── Namshi │ │ └── JOSE │ │ ├── Base64 │ │ ├── Base64Encoder.php │ │ ├── Base64UrlSafeEncoder.php │ │ └── Encoder.php │ │ ├── JWS.php │ │ ├── JWT.php │ │ ├── Signer │ │ ├── OpenSSL │ │ │ ├── ECDSA.php │ │ │ ├── ES256.php │ │ │ ├── ES384.php │ │ │ ├── ES512.php │ │ │ ├── HMAC.php │ │ │ ├── HS256.php │ │ │ ├── HS384.php │ │ │ ├── HS512.php │ │ │ ├── None.php │ │ │ ├── PublicKey.php │ │ │ ├── RS256.php │ │ │ ├── RS384.php │ │ │ ├── RS512.php │ │ │ └── RSA.php │ │ ├── SecLib │ │ │ ├── PublicKey.php │ │ │ ├── RS256.php │ │ │ ├── RS384.php │ │ │ ├── RS512.php │ │ │ └── RSA.php │ │ └── SignerInterface.php │ │ └── SimpleJWS.php │ └── tests │ ├── Namshi │ └── JOSE │ │ └── Test │ │ ├── BCJWSTest.php │ │ ├── JWSTest.php │ │ ├── JWTTest.php │ │ ├── Signer │ │ ├── OpenSSL │ │ │ ├── ES256Test.php │ │ │ ├── ES384Test.php │ │ │ ├── ES512Test.php │ │ │ ├── HS256Test.php │ │ │ ├── HS384Test.php │ │ │ ├── HS512Test.php │ │ │ ├── KeyFormatTest.php │ │ │ ├── NoneTest.php │ │ │ ├── RS256Test.php │ │ │ ├── RS384Test.php │ │ │ └── RS512Test.php │ │ └── SecLib │ │ │ ├── RS256TEST.php │ │ │ ├── RS384Test.php │ │ │ └── RS512Test.php │ │ └── SimpleJWSTest.php │ ├── bootstrap.php │ ├── private-ne.key │ ├── private.es256.key │ ├── private.es384.key │ ├── private.es512.key │ ├── private.key │ ├── public-ne.key │ ├── public.es256.key │ ├── public.es384.key │ ├── public.es512.key │ └── public.key ├── nesbot └── carbon │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ └── Carbon │ ├── Carbon.php │ ├── CarbonInterval.php │ └── Lang │ ├── af.php │ ├── ar.php │ ├── az.php │ ├── bg.php │ ├── bn.php │ ├── ca.php │ ├── cs.php │ ├── da.php │ ├── de.php │ ├── el.php │ ├── en.php │ ├── eo.php │ ├── es.php │ ├── et.php │ ├── eu.php │ ├── fa.php │ ├── fi.php │ ├── fo.php │ ├── fr.php │ ├── he.php │ ├── hr.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── ko.php │ ├── lt.php │ ├── lv.php │ ├── ms.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── pt.php │ ├── pt_BR.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sl.php │ ├── sq.php │ ├── sr.php │ ├── sv.php │ ├── th.php │ ├── tr.php │ ├── uk.php │ ├── uz.php │ ├── vi.php │ ├── zh-TW.php │ └── zh.php ├── nikic └── php-parser │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE-1.0.md │ ├── UPGRADE-2.0.md │ ├── bin │ └── php-parse │ ├── composer.json │ ├── 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.php │ │ ├── Builder │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ ├── BuilderAbstract.php │ │ ├── BuilderFactory.php │ │ ├── Comment.php │ │ ├── Comment │ │ │ └── Doc.php │ │ ├── Error.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ │ └── Emulative.php │ │ ├── Node.php │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── Const_.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp.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 │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp.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 │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── 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 │ │ │ ├── FunctionLike.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── Param.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst.php │ │ │ │ ├── MagicConst │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ └── Trait_.php │ │ │ │ └── String_.php │ │ │ ├── Stmt.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.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── NameResolver.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ │ ├── Multiple.php │ │ │ ├── Php5.php │ │ │ ├── Php7.php │ │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Serializer.php │ │ ├── Serializer │ │ │ └── XML.php │ │ ├── Unserializer.php │ │ └── Unserializer │ │ │ └── XML.php │ └── bootstrap.php │ ├── phpunit.xml.dist │ ├── test │ ├── PhpParser │ │ ├── AutoloaderTest.php │ │ ├── Builder │ │ │ ├── ClassTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── InterfaceTest.php │ │ │ ├── MethodTest.php │ │ │ ├── NamespaceTest.php │ │ │ ├── ParamTest.php │ │ │ ├── PropertyTest.php │ │ │ ├── TraitTest.php │ │ │ └── UseTest.php │ │ ├── BuilderFactoryTest.php │ │ ├── CodeParsingTest.php │ │ ├── CodeTestAbstract.php │ │ ├── CommentTest.php │ │ ├── ErrorTest.php │ │ ├── Lexer │ │ │ └── EmulativeTest.php │ │ ├── LexerTest.php │ │ ├── Node │ │ │ ├── NameTest.php │ │ │ ├── Scalar │ │ │ │ ├── MagicConstTest.php │ │ │ │ └── StringTest.php │ │ │ └── Stmt │ │ │ │ ├── ClassMethodTest.php │ │ │ │ ├── ClassTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── PropertyTest.php │ │ ├── NodeAbstractTest.php │ │ ├── NodeDumperTest.php │ │ ├── NodeTraverserTest.php │ │ ├── NodeVisitor │ │ │ └── NameResolverTest.php │ │ ├── Parser │ │ │ ├── MultipleTest.php │ │ │ ├── Php5Test.php │ │ │ └── Php7Test.php │ │ ├── ParserFactoryTest.php │ │ ├── ParserTest.php │ │ ├── PrettyPrinterTest.php │ │ ├── Serializer │ │ │ └── XMLTest.php │ │ └── Unserializer │ │ │ └── XMLTest.php │ ├── bootstrap.php │ └── code │ │ ├── parser │ │ ├── comments.test │ │ ├── errorHandling │ │ │ ├── eofError.test │ │ │ └── recovery.test │ │ ├── expr │ │ │ ├── arrayDef.test │ │ │ ├── assign.test │ │ │ ├── cast.test │ │ │ ├── clone.test │ │ │ ├── closure.test │ │ │ ├── comparison.test │ │ │ ├── constant_expr.test │ │ │ ├── errorSuppress.test │ │ │ ├── exit.test │ │ │ ├── fetchAndCall │ │ │ │ ├── args.test │ │ │ │ ├── constFetch.test │ │ │ │ ├── constantDeref.test │ │ │ │ ├── funcCall.test │ │ │ │ ├── newDeref.test │ │ │ │ ├── objectAccess.test │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ ├── staticCall.test │ │ │ │ └── staticPropertyFetch.test │ │ │ ├── includeAndEval.test │ │ │ ├── issetAndEmpty.test │ │ │ ├── logic.test │ │ │ ├── math.test │ │ │ ├── new.test │ │ │ ├── newWithoutClass.test │ │ │ ├── print.test │ │ │ ├── shellExec.test │ │ │ ├── ternaryAndCoalesce.test │ │ │ ├── uvs │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ ├── indirectCall.test │ │ │ │ ├── isset.test │ │ │ │ ├── misc.test │ │ │ │ ├── new.test │ │ │ │ └── staticProperty.test │ │ │ └── variable.test │ │ ├── scalar │ │ │ ├── constantString.test │ │ │ ├── docString.test │ │ │ ├── docStringNewlines.test │ │ │ ├── encapsedString.test │ │ │ ├── float.test │ │ │ ├── int.test │ │ │ ├── invalidOctal.test │ │ │ ├── magicConst.test │ │ │ └── unicodeEscape.test │ │ ├── semiReserved.test │ │ └── stmt │ │ │ ├── blocklessStatement.test │ │ │ ├── class │ │ │ ├── abstract.test │ │ │ ├── anonymous.test │ │ │ ├── conditional.test │ │ │ ├── final.test │ │ │ ├── implicitPublic.test │ │ │ ├── interface.test │ │ │ ├── modifier.test │ │ │ ├── name.test │ │ │ ├── php4Style.test │ │ │ ├── simple.test │ │ │ ├── staticMethod.test │ │ │ └── trait.test │ │ │ ├── const.test │ │ │ ├── controlFlow.test │ │ │ ├── declare.test │ │ │ ├── echo.test │ │ │ ├── function │ │ │ ├── byRef.test │ │ │ ├── conditional.test │ │ │ ├── defaultValues.test │ │ │ ├── returnTypes.test │ │ │ ├── scalarTypeDeclarations.test │ │ │ ├── specialVars.test │ │ │ ├── typeDeclarations.test │ │ │ ├── variadic.test │ │ │ └── variadicDefaultValue.test │ │ │ ├── generator │ │ │ ├── basic.test │ │ │ ├── yieldPrecedence.test │ │ │ └── yieldUnaryPrecedence.test │ │ │ ├── haltCompiler.test │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ ├── haltCompilerOffset.test │ │ │ ├── haltCompilerOutermostScope.test │ │ │ ├── hashbang.test │ │ │ ├── if.test │ │ │ ├── inlineHTML.test │ │ │ ├── loop │ │ │ ├── do.test │ │ │ ├── for.test │ │ │ ├── foreach.test │ │ │ └── while.test │ │ │ ├── namespace │ │ │ ├── alias.test │ │ │ ├── braced.test │ │ │ ├── groupUse.test │ │ │ ├── groupUseErrors.test │ │ │ ├── invalidName.test │ │ │ ├── mix.test │ │ │ ├── name.test │ │ │ ├── nested.test │ │ │ ├── notBraced.test │ │ │ ├── nsAfterHashbang.test │ │ │ ├── outsideStmt.test │ │ │ └── outsideStmtInvalid.test │ │ │ ├── switch.test │ │ │ ├── tryCatch.test │ │ │ ├── tryWithoutCatch.test │ │ │ └── unset.test │ │ └── prettyPrinter │ │ ├── comments.test │ │ ├── expr │ │ ├── anonymousClass.test │ │ ├── call.test │ │ ├── closure.test │ │ ├── constant_deref.test │ │ ├── docStrings.test │ │ ├── include.test │ │ ├── intrinsics.test │ │ ├── list.test │ │ ├── literals.test │ │ ├── numbers.test │ │ ├── operators.test │ │ ├── parentheses.test │ │ ├── shortArraySyntax.test │ │ ├── uvs.test │ │ ├── variables.test │ │ └── yield.test │ │ ├── inlineHTMLandPHPtest.file-test │ │ ├── onlyInlineHTML.file-test │ │ ├── onlyPHP.file-test │ │ └── stmt │ │ ├── alias.test │ │ ├── break_continue.test │ │ ├── class.test │ │ ├── const.test │ │ ├── declare.test │ │ ├── do_while.test │ │ ├── for.test │ │ ├── foreach.test │ │ ├── function_signatures.test │ │ ├── global_static_variables.test │ │ ├── goto.test │ │ ├── groupUse.test │ │ ├── haltCompiler.file-test │ │ ├── if.test │ │ ├── namespaces.test │ │ ├── switch.test │ │ ├── throw.test │ │ ├── traitUse.test │ │ ├── tryCatch.test │ │ └── while.test │ └── test_old │ ├── run-php-src.sh │ └── run.php ├── overtrue ├── laravel-lang │ ├── LICENSE │ ├── README.md │ ├── README_CN.md │ ├── composer.json │ └── src │ │ ├── FileLoader.php │ │ └── TranslationServiceProvider.php ├── laravel-pinyin │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facades │ │ └── Pinyin.php │ │ ├── ServiceProvider.php │ │ └── helpers.php ├── laravel-shopping-cart │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── src │ │ └── LaravelShoppingCart │ │ ├── Cart.php │ │ ├── Exception.php │ │ ├── Facade.php │ │ ├── Item.php │ │ └── ServiceProvider.php ├── pinyin │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── data │ │ ├── surnames │ │ ├── words_0 │ │ ├── words_1 │ │ ├── words_2 │ │ ├── words_3 │ │ ├── words_4 │ │ └── words_5 │ └── src │ │ ├── DictLoaderInterface.php │ │ ├── FileDictLoader.php │ │ └── Pinyin.php ├── socialite │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── AccessToken.php │ │ ├── AccessTokenInterface.php │ │ ├── AttributeTrait.php │ │ ├── Config.php │ │ ├── FactoryInterface.php │ │ ├── InvalidStateException.php │ │ ├── ProviderInterface.php │ │ ├── Providers │ │ │ ├── AbstractProvider.php │ │ │ ├── DoubanProvider.php │ │ │ ├── FacebookProvider.php │ │ │ ├── GitHubProvider.php │ │ │ ├── GoogleProvider.php │ │ │ ├── LinkedinProvider.php │ │ │ ├── QQProvider.php │ │ │ ├── WeChatProvider.php │ │ │ └── WeiboProvider.php │ │ ├── SocialiteManager.php │ │ ├── User.php │ │ └── UserInterface.php │ └── tests │ │ └── OAuthTest.php └── wechat │ ├── .phplint.yml │ ├── .styleci.yml │ ├── BACKERS.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Broadcast │ ├── Broadcast.php │ ├── LICENSE.txt │ ├── MessageBuilder.php │ ├── README.md │ ├── Transformer.php │ └── composer.json │ ├── Card │ ├── Card.php │ ├── LICENSE │ ├── README.md │ └── composer.json │ ├── Core │ ├── AbstractAPI.php │ ├── AccessToken.php │ ├── Exception.php │ ├── Exceptions │ │ ├── FaultException.php │ │ ├── HttpException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidConfigException.php │ │ ├── RuntimeException.php │ │ └── UnboundServiceException.php │ ├── Http.php │ ├── LICENSE │ ├── README.md │ └── composer.json │ ├── Device │ ├── DeviceHttpException.php │ ├── LICENSE │ ├── README.md │ └── composer.json │ ├── Encryption │ ├── EncryptionException.php │ ├── Encryptor.php │ └── composer.json │ ├── Foundation │ ├── Application.php │ ├── Config.php │ └── ServiceProviders │ │ ├── BroadcastServiceProvider.php │ │ ├── CardServiceProvider.php │ │ ├── JsServiceProvider.php │ │ ├── MaterialServiceProvider.php │ │ ├── MenuServiceProvider.php │ │ ├── NoticeServiceProvider.php │ │ ├── OAuthServiceProvider.php │ │ ├── POIServiceProvider.php │ │ ├── PaymentServiceProvider.php │ │ ├── QRCodeServiceProvider.php │ │ ├── ReplyServiceProvider.php │ │ ├── SemanticServiceProvider.php │ │ ├── ServerServiceProvider.php │ │ ├── StaffServiceProvider.php │ │ ├── StatsServiceProvider.php │ │ ├── UrlServiceProvider.php │ │ └── UserServiceProvider.php │ ├── Js │ ├── Js.php │ ├── LICENSE │ ├── README.md │ └── composer.json │ ├── Material │ ├── LICENSE │ ├── Material.php │ ├── README.md │ ├── Temporary.php │ └── composer.json │ ├── Menu │ ├── LICENSE │ ├── Menu.php │ ├── README.md │ └── composer.json │ ├── Message │ ├── AbstractMessage.php │ ├── Article.php │ ├── Image.php │ ├── Link.php │ ├── Location.php │ ├── Material.php │ ├── Music.php │ ├── News.php │ ├── README.md │ ├── Raw.php │ ├── ShortVideo.php │ ├── Text.php │ ├── Transfer.php │ ├── Video.php │ ├── Voice.php │ └── composer.json │ ├── Notice │ ├── LICENSE │ ├── Notice.php │ ├── README.md │ └── composer.json │ ├── POI │ ├── LICENSE │ ├── POI.php │ ├── README.md │ └── composer.json │ ├── Payment │ ├── API.php │ ├── LICENSE │ ├── LuckyMoney │ │ ├── API.php │ │ └── LuckyMoney.php │ ├── Merchant.php │ ├── MerchantPay │ │ ├── API.php │ │ └── MerchantPay.php │ ├── Notify.php │ ├── Order.php │ ├── Payment.php │ ├── README.md │ ├── composer.json │ └── helpers.php │ ├── QRCode │ ├── LICENSE │ ├── QRCode.php │ ├── README.md │ └── composer.json │ ├── Reply │ ├── LICENSE │ ├── README.md │ ├── Reply.php │ └── composer.json │ ├── Semantic │ ├── LICENSE │ ├── README.md │ ├── Semantic.php │ └── composer.json │ ├── Server │ ├── BadRequestException.php │ ├── Guard.php │ ├── LICENSE │ ├── README.md │ ├── Transformer.php │ └── composer.json │ ├── Staff │ ├── LICENSE │ ├── MessageBuilder.php │ ├── README.md │ ├── Session.php │ ├── Staff.php │ ├── Transformer.php │ └── composer.json │ ├── Stats │ ├── LICENSE │ ├── README.md │ ├── Stats.php │ └── composer.json │ ├── Store │ ├── LICENSE │ ├── Model │ │ └── .gitkeep │ ├── README.md │ ├── Store.php │ └── composer.json │ ├── Support │ ├── Arr.php │ ├── Attribute.php │ ├── Collection.php │ ├── File.php │ ├── LICENSE │ ├── Log.php │ ├── README.md │ ├── Str.php │ ├── Url.php │ ├── XML.php │ └── composer.json │ ├── Url │ ├── LICENSE │ ├── README.md │ ├── Url.php │ └── composer.json │ └── User │ ├── Group.php │ ├── LICENSE │ ├── README.md │ ├── Tag.php │ ├── User.php │ └── composer.json ├── paragonie └── random_compat │ ├── CHANGELOG.md │ ├── ERRATA.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── 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 ├── phpdocumentor ├── reflection-common │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php │ └── tests │ │ ├── common │ │ └── bootstrap.php │ │ └── unit │ │ └── FqsenTest.php ├── reflection-docblock │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── examples │ │ ├── 01-interpreting-a-simple-docblock.php │ │ ├── 02-interpreting-tags.php │ │ ├── 03-reconstituting-a-docblock.php │ │ ├── 04-adding-your-own-tag.php │ │ └── playing-with-descriptions │ │ │ └── 02-escaping.php │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ ├── StaticMethod.php │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php │ └── tests │ │ ├── integration │ │ ├── InterpretingDocBlocksTest.php │ │ ├── ReconstitutingADocBlockTest.php │ │ └── UsingTagsTest.php │ │ └── unit │ │ ├── DocBlock │ │ ├── DescriptionFactoryTest.php │ │ ├── DescriptionTest.php │ │ ├── SerializerTest.php │ │ ├── StandardTagFactoryTest.php │ │ └── Tags │ │ │ ├── AuthorTest.php │ │ │ ├── CoversTest.php │ │ │ ├── DeprecatedTest.php │ │ │ ├── Formatter │ │ │ └── PassthroughFormatterTest.php │ │ │ ├── GenericTest.php │ │ │ ├── LinkTest.php │ │ │ ├── MethodTest.php │ │ │ ├── ParamTest.php │ │ │ ├── PropertyReadTest.php │ │ │ ├── PropertyTest.php │ │ │ ├── PropertyWriteTest.php │ │ │ ├── ReturnTest.php │ │ │ ├── SeeTest.php │ │ │ ├── SinceTest.php │ │ │ ├── SourceTest.php │ │ │ ├── ThrowsTest.php │ │ │ ├── UsesTest.php │ │ │ ├── VarTest.php │ │ │ └── VersionTest.php │ │ ├── DocBlockFactoryTest.php │ │ └── DocBlockTest.php └── type-resolver │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── examples │ ├── 01-resolving-simple-types.php │ ├── 02-resolving-classes.php │ ├── 03-resolving-all-elements.php │ ├── 04-discovering-the-context-using-class-reflection.php │ ├── 05-discovering-the-context-using-method-reflection.php │ ├── 06-discovering-the-context-using-file-contents.php │ └── Classy.php │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Mixed.php │ │ ├── Null_.php │ │ ├── Object_.php │ │ ├── Resource.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ └── tests │ └── unit │ ├── TypeResolverTest.php │ └── Types │ ├── ContextFactoryTest.php │ └── ContextTest.php ├── phpseclib └── phpseclib │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build │ ├── build.xml │ ├── code-sniffer-ruleset-tests.xml │ ├── code-sniffer-ruleset.xml │ └── sami.conf.php │ ├── composer.json │ ├── composer.lock │ ├── phpseclib │ ├── Crypt │ │ ├── AES.php │ │ ├── Base.php │ │ ├── Blowfish.php │ │ ├── DES.php │ │ ├── Hash.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ └── X509.php │ ├── Math │ │ └── BigInteger.php │ ├── Net │ │ ├── SCP.php │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ ├── SSH1.php │ │ └── SSH2.php │ ├── System │ │ ├── SSH │ │ │ └── Agent.php │ │ └── SSH_Agent.php │ └── openssl.cnf │ ├── phpunit.xml.dist │ ├── tests │ ├── Functional │ │ └── Net │ │ │ ├── SCPSSH2UserStoryTest.php │ │ │ ├── SFTPLargeFileTest.php │ │ │ ├── SFTPUserStoryTest.php │ │ │ ├── SSH2AgentTest.php │ │ │ └── SSH2Test.php │ ├── PhpseclibFunctionalTestCase.php │ ├── PhpseclibTestCase.php │ ├── Unit │ │ ├── Crypt │ │ │ ├── AES │ │ │ │ ├── InternalTest.php │ │ │ │ ├── McryptTest.php │ │ │ │ └── TestCase.php │ │ │ ├── Hash │ │ │ │ ├── MD5Test.php │ │ │ │ ├── SHA256Test.php │ │ │ │ ├── SHA256_96Test.php │ │ │ │ ├── SHA512Test.php │ │ │ │ ├── SHA512_96Test.php │ │ │ │ └── TestCase.php │ │ │ ├── RSA │ │ │ │ └── LoadKeyTest.php │ │ │ └── RandomTest.php │ │ ├── File │ │ │ ├── ASN1 │ │ │ │ └── FE.pdf.p7m │ │ │ ├── ASN1Test.php │ │ │ └── X509 │ │ │ │ ├── CSRTest.php │ │ │ │ └── SPKACTest.php │ │ ├── Math │ │ │ └── BigInteger │ │ │ │ ├── BCMathTest.php │ │ │ │ ├── GMPTest.php │ │ │ │ ├── InternalOpenSSLTest.php │ │ │ │ ├── InternalTest.php │ │ │ │ └── TestCase.php │ │ └── Net │ │ │ ├── SFTPStreamTest.php │ │ │ ├── SSH1Test.php │ │ │ └── SSH2Test.php │ └── bootstrap.php │ └── travis │ ├── code_coverage_id_rsa │ ├── install-php-extensions.sh │ ├── run-phpunit.sh │ ├── setup-composer.sh │ ├── setup-secure-shell.sh │ ├── upload-code-coverage-html.sh │ └── upload-code-coverage-scrutinizer.sh ├── phpspec └── prophecy │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── spec │ └── Prophecy │ │ ├── Argument │ │ ├── ArgumentsWildcardSpec.php │ │ └── Token │ │ │ ├── AnyValueTokenSpec.php │ │ │ ├── AnyValuesTokenSpec.php │ │ │ ├── ApproximateValueTokenSpec.php │ │ │ ├── ArrayCountTokenSpec.php │ │ │ ├── ArrayEntryTokenSpec.php │ │ │ ├── ArrayEveryEntryTokenSpec.php │ │ │ ├── CallbackTokenSpec.php │ │ │ ├── ExactValueTokenSpec.php │ │ │ ├── IdenticalValueTokenSpec.php │ │ │ ├── LogicalAndTokenSpec.php │ │ │ ├── LogicalNotTokenSpec.php │ │ │ ├── ObjectStateTokenSpec.php │ │ │ ├── StringContainsTokenSpec.php │ │ │ └── TypeTokenSpec.php │ │ ├── ArgumentSpec.php │ │ ├── Call │ │ ├── CallCenterSpec.php │ │ └── CallSpec.php │ │ ├── Comparator │ │ ├── ClosureComparatorSpec.php │ │ ├── FactorySpec.php │ │ └── ProphecyComparatorSpec.php │ │ ├── Doubler │ │ ├── ClassPatch │ │ │ ├── DisableConstructorPatchSpec.php │ │ │ ├── HhvmExceptionPatchSpec.php │ │ │ ├── KeywordPatchSpec.php │ │ │ ├── MagicCallPatchSpec.php │ │ │ ├── ProphecySubjectPatchSpec.php │ │ │ ├── ReflectionClassNewInstancePatchSpec.php │ │ │ ├── SplFileInfoPatchSpec.php │ │ │ └── TraversablePatchSpec.php │ │ ├── DoublerSpec.php │ │ ├── Generator │ │ │ ├── ClassCodeGeneratorSpec.php │ │ │ ├── ClassCreatorSpec.php │ │ │ ├── ClassMirrorSpec.php │ │ │ └── Node │ │ │ │ ├── ArgumentNodeSpec.php │ │ │ │ ├── ClassNodeSpec.php │ │ │ │ └── MethodNodeSpec.php │ │ ├── LazyDoubleSpec.php │ │ └── NameGeneratorSpec.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallExceptionSpec.php │ │ ├── Doubler │ │ │ ├── ClassCreatorExceptionSpec.php │ │ │ ├── ClassMirrorExceptionSpec.php │ │ │ ├── ClassNotFoundExceptionSpec.php │ │ │ ├── DoubleExceptionSpec.php │ │ │ ├── InterfaceNotFoundExceptionSpec.php │ │ │ ├── MethodNotExtendableExceptionSpec.php │ │ │ └── MethodNotFoundExceptionSpec.php │ │ ├── Prediction │ │ │ ├── AggregateExceptionSpec.php │ │ │ ├── NoCallsExceptionSpec.php │ │ │ ├── UnexpectedCallsCountExceptionSpec.php │ │ │ └── UnexpectedCallsExceptionSpec.php │ │ └── Prophecy │ │ │ ├── MethodProphecyExceptionSpec.php │ │ │ └── ObjectProphecyExceptionSpec.php │ │ ├── Prediction │ │ ├── CallPredictionSpec.php │ │ ├── CallTimesPredictionSpec.php │ │ ├── CallbackPredictionSpec.php │ │ └── NoCallsPredictionSpec.php │ │ ├── Promise │ │ ├── CallbackPromiseSpec.php │ │ ├── ReturnArgumentPromiseSpec.php │ │ ├── ReturnPromiseSpec.php │ │ └── ThrowPromiseSpec.php │ │ ├── Prophecy │ │ ├── MethodProphecySpec.php │ │ ├── ObjectProphecySpec.php │ │ └── RevealerSpec.php │ │ ├── ProphetSpec.php │ │ └── Util │ │ └── StringUtilSpec.php │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ApproximateValueToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ ├── Factory.php │ └── ProphecyComparator.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ └── ReflectionInterface.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotExtendableException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── PhpDocumentor │ ├── ClassAndInterfaceTagRetriever.php │ ├── ClassTagRetriever.php │ ├── LegacyClassTagRetriever.php │ └── MethodTagRetrieverInterface.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── ChangeLog-2.2.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.php │ ├── src │ │ ├── CodeCoverage.php │ │ └── CodeCoverage │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── HHVM.php │ │ │ ├── PHPDBG.php │ │ │ └── Xdebug.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── UnintentionallyCoveredCode.php │ │ │ ├── Filter.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Factory.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── XML.php │ │ │ └── XML │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ ├── File │ │ │ │ ├── Coverage.php │ │ │ │ ├── Method.php │ │ │ │ ├── Report.php │ │ │ │ └── Unit.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Tests.php │ │ │ │ └── Totals.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ └── InvalidArgumentHelper.php │ └── tests │ │ ├── PHP │ │ ├── CodeCoverage │ │ │ ├── FilterTest.php │ │ │ ├── Report │ │ │ │ ├── CloverTest.php │ │ │ │ └── FactoryTest.php │ │ │ └── UtilTest.php │ │ └── CodeCoverageTest.php │ │ ├── TestCase.php │ │ └── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── ignored-lines-clover.xml │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── phpunit.xml │ ├── composer.json │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_method.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── proxied_method.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation.php │ │ │ ├── Invocation │ │ │ ├── Object.php │ │ │ └── Static.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── Return.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnSelf.php │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ └── tests │ │ ├── GeneratorTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObject │ │ ├── 232.phpt │ │ ├── Invocation │ │ │ ├── ObjectTest.php │ │ │ └── StaticTest.php │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ ├── abstract_class.phpt │ │ ├── class.phpt │ │ ├── class_call_parent_clone.phpt │ │ ├── class_call_parent_constructor.phpt │ │ ├── class_dont_call_parent_clone.phpt │ │ ├── class_dont_call_parent_constructor.phpt │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── class_partial.phpt │ │ ├── class_with_method_named_method.phpt │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ ├── interface.phpt │ │ ├── invocation_object_clone_object.phpt │ │ ├── namespaced_class.phpt │ │ ├── namespaced_class_call_parent_clone.phpt │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_partial.phpt │ │ ├── namespaced_interface.phpt │ │ ├── nonexistent_class.phpt │ │ ├── nonexistent_class_with_namespace.phpt │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ ├── proxy.phpt │ │ ├── scalar_type_declarations.phpt │ │ ├── wsdl_class.phpt │ │ ├── wsdl_class_namespace.phpt │ │ └── wsdl_class_partial.phpt │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ChangeLog-4.0.md │ ├── ChangeLog-4.1.md │ ├── ChangeLog-4.2.md │ ├── ChangeLog-4.3.md │ ├── ChangeLog-4.4.md │ ├── ChangeLog-4.5.md │ ├── ChangeLog-4.6.md │ ├── ChangeLog-4.7.md │ ├── ChangeLog-4.8.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── CodeCoverageException.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── And.php │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Count.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegExp.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNull.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── Not.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── Or.php │ │ │ ├── PCREMatch.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatches.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsOnly.php │ │ │ └── Xor.php │ │ ├── Error.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExceptionWrapper.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuite │ │ │ └── DataProvider.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Factory.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ ├── Exclude.php │ │ │ │ └── Include.php │ │ │ └── Test.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── ErrorHandler.php │ │ ├── Fileloader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Log │ │ ├── JSON.php │ │ ├── JUnit.php │ │ └── TAP.php │ │ ├── PHP.php │ │ ├── PHP │ │ ├── Default.php │ │ ├── Template │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── Windows.php │ │ └── eval-stdin.php │ │ ├── Printer.php │ │ ├── Regex.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ └── Text.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ └── tests │ ├── Extensions │ ├── PhptTestCaseTest.php │ └── RepeatedTestTest.php │ ├── Fail │ └── fail.phpt │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.php │ ├── Constraint │ │ ├── CountTest.php │ │ ├── ExceptionMessageRegExpTest.php │ │ ├── ExceptionMessageTest.php │ │ ├── JsonMatches │ │ │ └── ErrorMessageProviderTest.php │ │ └── JsonMatchesTest.php │ ├── ConstraintTest.php │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Regression │ ├── GitHub │ │ ├── 74 │ │ │ ├── Issue74Test.php │ │ │ └── NewException.php │ │ ├── 244 │ │ │ └── Issue244Test.php │ │ ├── 322 │ │ │ ├── Issue322Test.php │ │ │ └── phpunit322.xml │ │ ├── 433 │ │ │ └── Issue433Test.php │ │ ├── 445 │ │ │ └── Issue445Test.php │ │ ├── 498 │ │ │ └── Issue498Test.php │ │ ├── 503 │ │ │ └── Issue503Test.php │ │ ├── 581 │ │ │ └── Issue581Test.php │ │ ├── 765 │ │ │ └── Issue765Test.php │ │ ├── 797 │ │ │ ├── Issue797Test.php │ │ │ └── bootstrap797.php │ │ ├── 873 │ │ │ └── Issue873Test.php │ │ ├── 1149 │ │ │ └── Issue1149Test.php │ │ ├── 1216 │ │ │ ├── Issue1216Test.php │ │ │ ├── bootstrap1216.php │ │ │ └── phpunit1216.xml │ │ ├── 1265 │ │ │ ├── Issue1265Test.php │ │ │ └── phpunit1265.xml │ │ ├── 1330 │ │ │ ├── Issue1330Test.php │ │ │ └── phpunit1330.xml │ │ ├── 1335 │ │ │ ├── Issue1335Test.php │ │ │ └── bootstrap1335.php │ │ ├── 1337 │ │ │ └── Issue1337Test.php │ │ ├── 1348 │ │ │ └── Issue1348Test.php │ │ ├── 1351 │ │ │ ├── ChildProcessClass1351.php │ │ │ └── Issue1351Test.php │ │ ├── 1374 │ │ │ └── Issue1374Test.php │ │ ├── 1437 │ │ │ └── Issue1437Test.php │ │ ├── 1468 │ │ │ └── Issue1468Test.php │ │ ├── 1471 │ │ │ └── Issue1471Test.php │ │ ├── 1472 │ │ │ └── Issue1472Test.php │ │ ├── 1570 │ │ │ └── Issue1570Test.php │ │ ├── 2158 │ │ │ ├── Issue2158Test.php │ │ │ └── constant.inc │ │ ├── 1149.phpt │ │ ├── 1216.phpt │ │ ├── 1265.phpt │ │ ├── 1330.phpt │ │ ├── 1335.phpt │ │ ├── 1337.phpt │ │ ├── 1348.phpt │ │ ├── 1351.phpt │ │ ├── 1374.phpt │ │ ├── 1437.phpt │ │ ├── 1468.phpt │ │ ├── 1471.phpt │ │ ├── 1472.phpt │ │ ├── 1570.phpt │ │ ├── 2158.phpt │ │ ├── 244.phpt │ │ ├── 322.phpt │ │ ├── 433.phpt │ │ ├── 445.phpt │ │ ├── 498.phpt │ │ ├── 503.phpt │ │ ├── 581.phpt │ │ ├── 74.phpt │ │ ├── 765.phpt │ │ ├── 797.phpt │ │ ├── 863.phpt │ │ ├── 873-php5.phpt │ │ └── 873-php7.phpt │ └── Trac │ │ ├── 523 │ │ └── Issue523Test.php │ │ ├── 578 │ │ └── Issue578Test.php │ │ ├── 684 │ │ └── Issue684Test.php │ │ ├── 783 │ │ ├── ChildSuite.php │ │ ├── OneTest.php │ │ ├── ParentSuite.php │ │ └── TwoTest.php │ │ ├── 1021 │ │ └── Issue1021Test.php │ │ ├── 1021.phpt │ │ ├── 523.phpt │ │ ├── 578.phpt │ │ ├── 684.phpt │ │ └── 783.phpt │ ├── Runner │ └── BaseTestRunnerTest.php │ ├── TextUI │ ├── abstract-test-class.phpt │ ├── colors-always.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-debug.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── failure-isolation.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-case-insensitive.phpt │ ├── filter-method-case-sensitive-no-result.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── log-json-no-pretty-print.phpt │ ├── log-json-post-66021.phpt │ ├── log-json-pre-66021.phpt │ ├── log-tap.phpt │ ├── log-xml.phpt │ ├── options-after-arguments.phpt │ ├── output-isolation.phpt │ ├── repeat.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── tap.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── RegexTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XMLTest.php │ ├── _files │ ├── AbstractTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNamespacedFunctionTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderDebugTest.php │ ├── DataProviderFilterTest.php │ ├── DataProviderIncompleteTest.php │ ├── DataProviderSkippedTest.php │ ├── DataProviderTest.php │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyException.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FatalTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── MultiDependencyTest.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NamespaceCoveredFunction.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── WasRun.php │ ├── bar.xml │ ├── configuration.colors.empty.xml │ ├── configuration.colors.false.xml │ ├── configuration.colors.invalid.xml │ ├── configuration.colors.true.xml │ ├── configuration.custom-printer.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ └── bootstrap.php ├── pimple └── pimple │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ ├── ext │ └── pimple │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config.m4 │ │ ├── config.w32 │ │ ├── php_pimple.h │ │ ├── pimple.c │ │ ├── pimple_compat.h │ │ └── tests │ │ ├── 001.phpt │ │ ├── 002.phpt │ │ ├── 003.phpt │ │ ├── 004.phpt │ │ ├── 005.phpt │ │ ├── 006.phpt │ │ ├── 007.phpt │ │ ├── 008.phpt │ │ ├── 009.phpt │ │ ├── 010.phpt │ │ ├── 011.phpt │ │ ├── 012.phpt │ │ ├── 013.phpt │ │ ├── 014.phpt │ │ ├── 015.phpt │ │ ├── 016.phpt │ │ ├── 017.phpt │ │ ├── 017_1.phpt │ │ ├── 018.phpt │ │ ├── 019.phpt │ │ ├── bench.phpb │ │ └── bench_shared.phpb │ ├── phpunit.xml.dist │ └── src │ └── Pimple │ ├── Container.php │ ├── ServiceProviderInterface.php │ └── Tests │ ├── Fixtures │ ├── Invokable.php │ ├── NonInvokable.php │ ├── PimpleServiceProvider.php │ └── Service.php │ ├── PimpleServiceProviderInterfaceTest.php │ └── PimpleTest.php ├── predis └── predis │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── autoload.php │ ├── bin │ ├── create-command-test │ ├── create-pear │ ├── create-phar │ └── create-single-file │ ├── composer.json │ ├── examples │ ├── custom_cluster_distributor.php │ ├── debuggable_connection.php │ ├── dispatcher_loop.php │ ├── executing_redis_commands.php │ ├── key_prefixing.php │ ├── lua_scripting_abstraction.php │ ├── monitor_consumer.php │ ├── pipelining_commands.php │ ├── pubsub_consumer.php │ ├── redis_collections_iterators.php │ ├── replication_complex.php │ ├── replication_sentinel.php │ ├── replication_simple.php │ ├── session_handler.php │ ├── shared.php │ └── transaction_using_cas.php │ ├── package.ini │ └── src │ ├── Autoloader.php │ ├── Client.php │ ├── ClientContextInterface.php │ ├── ClientException.php │ ├── ClientInterface.php │ ├── Cluster │ ├── ClusterStrategy.php │ ├── Distributor │ │ ├── DistributorInterface.php │ │ ├── EmptyRingException.php │ │ ├── HashRing.php │ │ └── KetamaRing.php │ ├── Hash │ │ ├── CRC16.php │ │ └── HashGeneratorInterface.php │ ├── PredisStrategy.php │ ├── RedisStrategy.php │ └── StrategyInterface.php │ ├── Collection │ └── Iterator │ │ ├── CursorBasedIterator.php │ │ ├── HashKey.php │ │ ├── Keyspace.php │ │ ├── ListKey.php │ │ ├── SetKey.php │ │ └── SortedSetKey.php │ ├── Command │ ├── Command.php │ ├── CommandInterface.php │ ├── ConnectionAuth.php │ ├── ConnectionEcho.php │ ├── ConnectionPing.php │ ├── ConnectionQuit.php │ ├── ConnectionSelect.php │ ├── GeospatialGeoAdd.php │ ├── GeospatialGeoDist.php │ ├── GeospatialGeoHash.php │ ├── GeospatialGeoPos.php │ ├── GeospatialGeoRadius.php │ ├── GeospatialGeoRadiusByMember.php │ ├── HashDelete.php │ ├── HashExists.php │ ├── HashGet.php │ ├── HashGetAll.php │ ├── HashGetMultiple.php │ ├── HashIncrementBy.php │ ├── HashIncrementByFloat.php │ ├── HashKeys.php │ ├── HashLength.php │ ├── HashScan.php │ ├── HashSet.php │ ├── HashSetMultiple.php │ ├── HashSetPreserve.php │ ├── HashStringLength.php │ ├── HashValues.php │ ├── HyperLogLogAdd.php │ ├── HyperLogLogCount.php │ ├── HyperLogLogMerge.php │ ├── KeyDelete.php │ ├── KeyDump.php │ ├── KeyExists.php │ ├── KeyExpire.php │ ├── KeyExpireAt.php │ ├── KeyKeys.php │ ├── KeyMigrate.php │ ├── KeyMove.php │ ├── KeyPersist.php │ ├── KeyPreciseExpire.php │ ├── KeyPreciseExpireAt.php │ ├── KeyPreciseTimeToLive.php │ ├── KeyRandom.php │ ├── KeyRename.php │ ├── KeyRenamePreserve.php │ ├── KeyRestore.php │ ├── KeyScan.php │ ├── KeySort.php │ ├── KeyTimeToLive.php │ ├── KeyType.php │ ├── ListIndex.php │ ├── ListInsert.php │ ├── ListLength.php │ ├── ListPopFirst.php │ ├── ListPopFirstBlocking.php │ ├── ListPopLast.php │ ├── ListPopLastBlocking.php │ ├── ListPopLastPushHead.php │ ├── ListPopLastPushHeadBlocking.php │ ├── ListPushHead.php │ ├── ListPushHeadX.php │ ├── ListPushTail.php │ ├── ListPushTailX.php │ ├── ListRange.php │ ├── ListRemove.php │ ├── ListSet.php │ ├── ListTrim.php │ ├── PrefixableCommandInterface.php │ ├── Processor │ │ ├── KeyPrefixProcessor.php │ │ ├── ProcessorChain.php │ │ └── ProcessorInterface.php │ ├── PubSubPublish.php │ ├── PubSubPubsub.php │ ├── PubSubSubscribe.php │ ├── PubSubSubscribeByPattern.php │ ├── PubSubUnsubscribe.php │ ├── PubSubUnsubscribeByPattern.php │ ├── RawCommand.php │ ├── ScriptCommand.php │ ├── ServerBackgroundRewriteAOF.php │ ├── ServerBackgroundSave.php │ ├── ServerClient.php │ ├── ServerCommand.php │ ├── ServerConfig.php │ ├── ServerDatabaseSize.php │ ├── ServerEval.php │ ├── ServerEvalSHA.php │ ├── ServerFlushAll.php │ ├── ServerFlushDatabase.php │ ├── ServerInfo.php │ ├── ServerInfoV26x.php │ ├── ServerLastSave.php │ ├── ServerMonitor.php │ ├── ServerObject.php │ ├── ServerSave.php │ ├── ServerScript.php │ ├── ServerSentinel.php │ ├── ServerShutdown.php │ ├── ServerSlaveOf.php │ ├── ServerSlowlog.php │ ├── ServerTime.php │ ├── SetAdd.php │ ├── SetCardinality.php │ ├── SetDifference.php │ ├── SetDifferenceStore.php │ ├── SetIntersection.php │ ├── SetIntersectionStore.php │ ├── SetIsMember.php │ ├── SetMembers.php │ ├── SetMove.php │ ├── SetPop.php │ ├── SetRandomMember.php │ ├── SetRemove.php │ ├── SetScan.php │ ├── SetUnion.php │ ├── SetUnionStore.php │ ├── StringAppend.php │ ├── StringBitCount.php │ ├── StringBitField.php │ ├── StringBitOp.php │ ├── StringBitPos.php │ ├── StringDecrement.php │ ├── StringDecrementBy.php │ ├── StringGet.php │ ├── StringGetBit.php │ ├── StringGetMultiple.php │ ├── StringGetRange.php │ ├── StringGetSet.php │ ├── StringIncrement.php │ ├── StringIncrementBy.php │ ├── StringIncrementByFloat.php │ ├── StringPreciseSetExpire.php │ ├── StringSet.php │ ├── StringSetBit.php │ ├── StringSetExpire.php │ ├── StringSetMultiple.php │ ├── StringSetMultiplePreserve.php │ ├── StringSetPreserve.php │ ├── StringSetRange.php │ ├── StringStrlen.php │ ├── StringSubstr.php │ ├── TransactionDiscard.php │ ├── TransactionExec.php │ ├── TransactionMulti.php │ ├── TransactionUnwatch.php │ ├── TransactionWatch.php │ ├── ZSetAdd.php │ ├── ZSetCardinality.php │ ├── ZSetCount.php │ ├── ZSetIncrementBy.php │ ├── ZSetIntersectionStore.php │ ├── ZSetLexCount.php │ ├── ZSetRange.php │ ├── ZSetRangeByLex.php │ ├── ZSetRangeByScore.php │ ├── ZSetRank.php │ ├── ZSetRemove.php │ ├── ZSetRemoveRangeByLex.php │ ├── ZSetRemoveRangeByRank.php │ ├── ZSetRemoveRangeByScore.php │ ├── ZSetReverseRange.php │ ├── ZSetReverseRangeByLex.php │ ├── ZSetReverseRangeByScore.php │ ├── ZSetReverseRank.php │ ├── ZSetScan.php │ ├── ZSetScore.php │ └── ZSetUnionStore.php │ ├── CommunicationException.php │ ├── Configuration │ ├── ClusterOption.php │ ├── ConnectionFactoryOption.php │ ├── ExceptionsOption.php │ ├── OptionInterface.php │ ├── Options.php │ ├── OptionsInterface.php │ ├── PrefixOption.php │ ├── ProfileOption.php │ └── ReplicationOption.php │ ├── Connection │ ├── AbstractConnection.php │ ├── Aggregate │ │ ├── ClusterInterface.php │ │ ├── MasterSlaveReplication.php │ │ ├── PredisCluster.php │ │ ├── RedisCluster.php │ │ ├── ReplicationInterface.php │ │ └── SentinelReplication.php │ ├── AggregateConnectionInterface.php │ ├── CompositeConnectionInterface.php │ ├── CompositeStreamConnection.php │ ├── ConnectionException.php │ ├── ConnectionInterface.php │ ├── Factory.php │ ├── FactoryInterface.php │ ├── NodeConnectionInterface.php │ ├── Parameters.php │ ├── ParametersInterface.php │ ├── PhpiredisSocketConnection.php │ ├── PhpiredisStreamConnection.php │ ├── StreamConnection.php │ └── WebdisConnection.php │ ├── Monitor │ └── Consumer.php │ ├── NotSupportedException.php │ ├── Pipeline │ ├── Atomic.php │ ├── ConnectionErrorProof.php │ ├── FireAndForget.php │ └── Pipeline.php │ ├── PredisException.php │ ├── Profile │ ├── Factory.php │ ├── ProfileInterface.php │ ├── RedisProfile.php │ ├── RedisUnstable.php │ ├── RedisVersion200.php │ ├── RedisVersion220.php │ ├── RedisVersion240.php │ ├── RedisVersion260.php │ ├── RedisVersion280.php │ ├── RedisVersion300.php │ └── RedisVersion320.php │ ├── Protocol │ ├── ProtocolException.php │ ├── ProtocolProcessorInterface.php │ ├── RequestSerializerInterface.php │ ├── ResponseReaderInterface.php │ └── Text │ │ ├── CompositeProtocolProcessor.php │ │ ├── Handler │ │ ├── BulkResponse.php │ │ ├── ErrorResponse.php │ │ ├── IntegerResponse.php │ │ ├── MultiBulkResponse.php │ │ ├── ResponseHandlerInterface.php │ │ ├── StatusResponse.php │ │ └── StreamableMultiBulkResponse.php │ │ ├── ProtocolProcessor.php │ │ ├── RequestSerializer.php │ │ └── ResponseReader.php │ ├── PubSub │ ├── AbstractConsumer.php │ ├── Consumer.php │ └── DispatcherLoop.php │ ├── Replication │ ├── MissingMasterException.php │ ├── ReplicationStrategy.php │ └── RoleException.php │ ├── Response │ ├── Error.php │ ├── ErrorInterface.php │ ├── Iterator │ │ ├── MultiBulk.php │ │ ├── MultiBulkIterator.php │ │ └── MultiBulkTuple.php │ ├── ResponseInterface.php │ ├── ServerException.php │ └── Status.php │ ├── Session │ └── Handler.php │ └── Transaction │ ├── AbortedMultiExecException.php │ ├── MultiExec.php │ └── MultiExecState.php ├── psr ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json ├── psy └── psysh │ ├── .editorconfig │ ├── .gitignore │ ├── .php_cs │ ├── .styleci.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ ├── build │ ├── build-manual │ ├── build-phar │ ├── build-vendor │ └── psysh │ ├── composer.json │ ├── phpcs.xml │ ├── phpunit.xml.dist │ ├── src │ └── Psy │ │ ├── Autoloader.php │ │ ├── CodeCleaner.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 │ │ ├── Command │ │ ├── BufferCommand.php │ │ ├── ClearCommand.php │ │ ├── Command.php │ │ ├── DocCommand.php │ │ ├── DumpCommand.php │ │ ├── ExitCommand.php │ │ ├── HelpCommand.php │ │ ├── HistoryCommand.php │ │ ├── ListCommand.php │ │ ├── ListCommand │ │ │ ├── ClassConstantEnumerator.php │ │ │ ├── ClassEnumerator.php │ │ │ ├── ConstantEnumerator.php │ │ │ ├── Enumerator.php │ │ │ ├── FunctionEnumerator.php │ │ │ ├── GlobalVariableEnumerator.php │ │ │ ├── InterfaceEnumerator.php │ │ │ ├── MethodEnumerator.php │ │ │ ├── PropertyEnumerator.php │ │ │ ├── TraitEnumerator.php │ │ │ └── VariableEnumerator.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 │ └── test │ ├── Psy │ └── Test │ │ ├── AutoloaderTest.php │ │ ├── CodeCleaner │ │ ├── AbstractClassPassTest.php │ │ ├── AssignThisVariablePassTest.php │ │ ├── CallTimePassByReferencePassTest.php │ │ ├── CalledClassPassTest.php │ │ ├── CodeCleanerTestCase.php │ │ ├── ExitPassTest.php │ │ ├── Fixtures │ │ │ ├── ClassWithCallStatic.php │ │ │ └── ClassWithStatic.php │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ ├── ImplicitReturnPassTest.php │ │ ├── InstanceOfPassTest.php │ │ ├── LeavePsyshAlonePassTest.php │ │ ├── LegacyEmptyPassTest.php │ │ ├── MagicConstantsPassTest.php │ │ ├── NamespacePassTest.php │ │ ├── StaticConstructorPassTest.php │ │ ├── StrictTypesPassTest.php │ │ ├── UseStatementPassTest.php │ │ ├── ValidClassNamePassTest.php │ │ ├── ValidConstantPassTest.php │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.php │ │ ├── ConfigurationTest.php │ │ ├── ConsoleColorFactoryTest.php │ │ ├── Exception │ │ ├── BreakExceptionTest.php │ │ ├── ErrorExceptionTest.php │ │ ├── FatalErrorExceptionTest.php │ │ ├── ParseErrorExceptionTest.php │ │ └── RuntimeExceptionTest.php │ │ ├── Formatter │ │ ├── CodeFormatterTest.php │ │ ├── DocblockFormatterTest.php │ │ └── SignatureFormatterTest.php │ │ ├── Readline │ │ ├── GNUReadlineTest.php │ │ ├── LibeditTest.php │ │ └── TransientTest.php │ │ ├── Reflection │ │ └── ReflectionConstantTest.php │ │ ├── ShellTest.php │ │ ├── TabCompletion │ │ ├── AutoCompleterTest.php │ │ └── StaticSample.php │ │ └── Util │ │ ├── DocblockTest.php │ │ ├── MirrorTest.php │ │ └── StrTest.php │ ├── fixtures │ ├── config.php │ ├── default │ │ ├── .config │ │ │ └── psysh │ │ │ │ ├── config.php │ │ │ │ └── psysh_history │ │ └── .local │ │ │ └── share │ │ │ └── psysh │ │ │ └── php_manual.sqlite │ ├── empty.php │ ├── legacy │ │ └── .psysh │ │ │ ├── history │ │ │ ├── php_manual.sqlite │ │ │ └── rc.php │ ├── mixed │ │ └── .psysh │ │ │ ├── config.php │ │ │ ├── psysh_history │ │ │ └── rc.php │ ├── project │ │ └── .psysh.php │ └── unvis_fixtures.json │ └── tools │ ├── gen_unvis_fixtures.py │ └── vis.py ├── qiniu └── php-sdk │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── examples │ ├── README.md │ ├── auth.php │ ├── bucket_mgr.php │ ├── bucket_mgr_init.php │ ├── callback.php │ ├── download_token.php │ ├── fetch.php │ ├── file_copy.php │ ├── file_delete.php │ ├── file_move.php │ ├── file_stat.php │ ├── image_url_builder.php │ ├── list_file.php │ ├── mkzip.php │ ├── notify.php │ ├── persistent_fop.php │ ├── persistent_fop_init.php │ ├── persistent_fop_status.php │ ├── pfop_ vframe.php │ ├── pfop_ watermark.php │ ├── php-logo.png │ ├── qetag.php │ ├── up.php │ ├── upload.php │ ├── upload_and_callback.php │ ├── upload_and_pfop.php │ ├── upload_mgr_init.php │ └── upload_token.php │ ├── phpunit.xml.dist │ ├── src │ └── Qiniu │ │ ├── Auth.php │ │ ├── Config.php │ │ ├── Etag.php │ │ ├── Http │ │ ├── Client.php │ │ ├── Error.php │ │ ├── Request.php │ │ └── Response.php │ │ ├── Processing │ │ ├── ImageUrlBuilder.php │ │ ├── Operation.php │ │ └── PersistentFop.php │ │ ├── Storage │ │ ├── BucketManager.php │ │ ├── FormUploader.php │ │ ├── ResumeUploader.php │ │ └── UploadManager.php │ │ ├── Zone.php │ │ └── functions.php │ └── tests │ ├── Qiniu │ └── Tests │ │ ├── AuthTest.php │ │ ├── Base64Test.php │ │ ├── BucketTest.php │ │ ├── Crc32Test.php │ │ ├── DownloadTest.php │ │ ├── EtagTest.php │ │ ├── FopTest.php │ │ ├── FormUpTest.php │ │ ├── HttpTest.php │ │ ├── ImageUrlBuilderTest.php │ │ ├── PfopTest.php │ │ └── ResumeUpTest.php │ └── bootstrap.php ├── sebastian ├── comparator │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── DoubleComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ └── TypeComparator.php │ └── tests │ │ ├── ArrayComparatorTest.php │ │ ├── DOMNodeComparatorTest.php │ │ ├── DateTimeComparatorTest.php │ │ ├── DoubleComparatorTest.php │ │ ├── ExceptionComparatorTest.php │ │ ├── FactoryTest.php │ │ ├── MockObjectComparatorTest.php │ │ ├── NumericComparatorTest.php │ │ ├── ObjectComparatorTest.php │ │ ├── ResourceComparatorTest.php │ │ ├── ScalarComparatorTest.php │ │ ├── SplObjectStorageComparatorTest.php │ │ ├── TypeComparatorTest.php │ │ ├── _files │ │ ├── Author.php │ │ ├── Book.php │ │ ├── ClassWithToString.php │ │ ├── SampleClass.php │ │ ├── Struct.php │ │ ├── TestClass.php │ │ └── TestClassComparator.php │ │ ├── autoload.php │ │ └── bootstrap.php ├── diff │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── DifferTest.php │ │ ├── LCS │ │ └── TimeEfficientImplementationTest.php │ │ ├── ParserTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Console.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php ├── global-state │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Blacklist.php │ │ ├── CodeExporter.php │ │ ├── Exception.php │ │ ├── Restorer.php │ │ ├── RuntimeException.php │ │ └── Snapshot.php │ └── tests │ │ ├── BlacklistTest.php │ │ ├── SnapshotTest.php │ │ └── _fixture │ │ ├── BlacklistedChildClass.php │ │ ├── BlacklistedClass.php │ │ ├── BlacklistedImplementor.php │ │ ├── BlacklistedInterface.php │ │ ├── SnapshotClass.php │ │ ├── SnapshotDomDocument.php │ │ ├── SnapshotFunctions.php │ │ └── SnapshotTrait.php ├── recursion-context │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ └── ContextTest.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── stevenyangecho └── laravel-u-editor │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── config │ └── UEditorUpload.php │ ├── resources │ ├── lang │ │ ├── en │ │ │ └── upload.php │ │ ├── zh_CN │ │ │ └── upload.php │ │ └── zh_TW │ │ │ └── upload.php │ ├── public │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ ├── zh-cn │ │ │ │ ├── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ │ └── zh-tw │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-tw.js │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.parse.js │ │ └── ueditor.parse.min.js │ └── views │ │ ├── .gitkeep │ │ └── head.blade.php │ └── src │ ├── Controller.php │ ├── Lists.php │ ├── ListsQiniu.php │ ├── UEditorServiceProvider.php │ └── Uploader │ ├── Upload.php │ ├── UploadCatch.php │ ├── UploadFile.php │ ├── UploadQiniu.php │ └── UploadScrawl.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── composer.json │ ├── doc │ ├── headers.rst │ ├── help-resources.rst │ ├── including-the-files.rst │ ├── index.rst │ ├── installing.rst │ ├── introduction.rst │ ├── japanese.rst │ ├── messages.rst │ ├── overview.rst │ ├── plugins.rst │ ├── sending.rst │ └── uml │ │ ├── Encoders.graffle │ │ ├── Mime.graffle │ │ └── Transports.graffle │ ├── lib │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ ├── mime_types.php │ ├── preferences.php │ ├── swift_init.php │ ├── swift_required.php │ ├── swift_required_pear.php │ └── swiftmailer_generate_mimes_config.php │ ├── phpunit.xml.dist │ └── tests │ ├── IdenticalBinaryConstraint.php │ ├── StreamCollector.php │ ├── SwiftMailerSmokeTestCase.php │ ├── SwiftMailerTestCase.php │ ├── _samples │ ├── charsets │ │ ├── iso-2022-jp │ │ │ └── one.txt │ │ ├── iso-8859-1 │ │ │ └── one.txt │ │ └── utf-8 │ │ │ ├── one.txt │ │ │ ├── three.txt │ │ │ └── two.txt │ ├── dkim │ │ ├── dkim.test.priv │ │ └── dkim.test.pub │ ├── files │ │ ├── data.txt │ │ ├── swiftmailer.png │ │ └── textfile.zip │ └── smime │ │ ├── CA.srl │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── create-cert.sh │ │ ├── encrypt.crt │ │ ├── encrypt.key │ │ ├── encrypt2.crt │ │ ├── encrypt2.key │ │ ├── intermediate.crt │ │ ├── intermediate.key │ │ ├── sign.crt │ │ ├── sign.key │ │ ├── sign2.crt │ │ └── sign2.key │ ├── acceptance.conf.php.default │ ├── acceptance │ └── Swift │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ByteStream │ │ └── FileByteStreamAcceptanceTest.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ ├── DependencyContainerAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── Encoder │ │ ├── Base64EncoderAcceptanceTest.php │ │ ├── QpEncoderAcceptanceTest.php │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ ├── EncodingAcceptanceTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ └── DiskKeyCacheAcceptanceTest.php │ │ ├── MessageAcceptanceTest.php │ │ ├── Mime │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── HeaderEncoder │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── SimpleMessageAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── Transport │ │ └── StreamBuffer │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ ├── BasicSocketAcceptanceTest.php │ │ ├── ProcessAcceptanceTest.php │ │ ├── SocketTimeoutTest.php │ │ ├── SslSocketAcceptanceTest.php │ │ └── TlsSocketAcceptanceTest.php │ ├── bootstrap.php │ ├── bug │ └── Swift │ │ ├── Bug111Test.php │ │ ├── Bug118Test.php │ │ ├── Bug206Test.php │ │ ├── Bug274Test.php │ │ ├── Bug34Test.php │ │ ├── Bug35Test.php │ │ ├── Bug38Test.php │ │ ├── Bug518Test.php │ │ ├── Bug51Test.php │ │ ├── Bug534Test.php │ │ ├── Bug650Test.php │ │ ├── Bug71Test.php │ │ ├── Bug76Test.php │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ ├── fixtures │ └── MimeEntityFixture.php │ ├── smoke.conf.php.default │ ├── smoke │ └── Swift │ │ └── Smoke │ │ ├── AttachmentSmokeTest.php │ │ ├── BasicSmokeTest.php │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ └── InternationalSmokeTest.php │ └── unit │ └── Swift │ ├── ByteStream │ └── ArrayByteStreamTest.php │ ├── CharacterReader │ ├── GenericFixedWidthReaderTest.php │ ├── UsAsciiReaderTest.php │ └── Utf8ReaderTest.php │ ├── CharacterStream │ └── ArrayCharacterStreamTest.php │ ├── DependencyContainerTest.php │ ├── Encoder │ ├── Base64EncoderTest.php │ ├── QpEncoderTest.php │ └── Rfc2231EncoderTest.php │ ├── Events │ ├── CommandEventTest.php │ ├── EventObjectTest.php │ ├── ResponseEventTest.php │ ├── SendEventTest.php │ ├── SimpleEventDispatcherTest.php │ ├── TransportChangeEventTest.php │ └── TransportExceptionEventTest.php │ ├── KeyCache │ ├── ArrayKeyCacheTest.php │ └── SimpleKeyCacheInputStreamTest.php │ ├── Mailer │ └── ArrayRecipientIteratorTest.php │ ├── MailerTest.php │ ├── MessageTest.php │ ├── Mime │ ├── AbstractMimeEntityTest.php │ ├── AttachmentTest.php │ ├── ContentEncoder │ │ ├── Base64ContentEncoderTest.php │ │ ├── PlainContentEncoderTest.php │ │ └── QpContentEncoderTest.php │ ├── EmbeddedFileTest.php │ ├── HeaderEncoder │ │ ├── Base64HeaderEncoderTest.php │ │ └── QpHeaderEncoderTest.php │ ├── Headers │ │ ├── DateHeaderTest.php │ │ ├── IdentificationHeaderTest.php │ │ ├── MailboxHeaderTest.php │ │ ├── ParameterizedHeaderTest.php │ │ ├── PathHeaderTest.php │ │ └── UnstructuredHeaderTest.php │ ├── MimePartTest.php │ ├── SimpleHeaderFactoryTest.php │ ├── SimpleHeaderSetTest.php │ ├── SimpleMessageTest.php │ └── SimpleMimeEntityTest.php │ ├── Plugins │ ├── AntiFloodPluginTest.php │ ├── BandwidthMonitorPluginTest.php │ ├── DecoratorPluginTest.php │ ├── LoggerPluginTest.php │ ├── Loggers │ │ ├── ArrayLoggerTest.php │ │ └── EchoLoggerTest.php │ ├── PopBeforeSmtpPluginTest.php │ ├── RedirectingPluginTest.php │ ├── ReporterPluginTest.php │ ├── Reporters │ │ ├── HitReporterTest.php │ │ └── HtmlReporterTest.php │ └── ThrottlerPluginTest.php │ ├── Signers │ ├── DKIMSignerTest.php │ ├── OpenDKIMSignerTest.php │ └── SMimeSignerTest.php │ ├── StreamFilters │ ├── ByteArrayReplacementFilterTest.php │ ├── StringReplacementFilterFactoryTest.php │ └── StringReplacementFilterTest.php │ └── Transport │ ├── AbstractSmtpEventSupportTest.php │ ├── AbstractSmtpTest.php │ ├── Esmtp │ ├── Auth │ │ ├── CramMd5AuthenticatorTest.php │ │ ├── LoginAuthenticatorTest.php │ │ ├── NTLMAuthenticatorTest.php │ │ └── PlainAuthenticatorTest.php │ └── AuthHandlerTest.php │ ├── EsmtpTransport │ └── ExtensionSupportTest.php │ ├── EsmtpTransportTest.php │ ├── FailoverTransportTest.php │ ├── LoadBalancedTransportTest.php │ ├── MailTransportTest.php │ ├── SendmailTransportTest.php │ └── StreamBufferTest.php ├── symfony ├── console │ ├── .gitignore │ ├── Application.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ └── ListCommand.php │ ├── ConsoleEvents.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleExceptionEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ └── OutputFormatterStyleStack.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.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 │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ └── CommandTester.php │ ├── Tests │ │ ├── ApplicationTest.php │ │ ├── Command │ │ │ ├── CommandTest.php │ │ │ ├── HelpCommandTest.php │ │ │ └── ListCommandTest.php │ │ ├── Descriptor │ │ │ ├── AbstractDescriptorTest.php │ │ │ ├── JsonDescriptorTest.php │ │ │ ├── MarkdownDescriptorTest.php │ │ │ ├── ObjectsProvider.php │ │ │ ├── TextDescriptorTest.php │ │ │ └── XmlDescriptorTest.php │ │ ├── Fixtures │ │ │ ├── BarBucCommand.php │ │ │ ├── DescriptorApplication1.php │ │ │ ├── DescriptorApplication2.php │ │ │ ├── DescriptorCommand1.php │ │ │ ├── DescriptorCommand2.php │ │ │ ├── DummyOutput.php │ │ │ ├── Foo1Command.php │ │ │ ├── Foo2Command.php │ │ │ ├── Foo3Command.php │ │ │ ├── Foo4Command.php │ │ │ ├── Foo5Command.php │ │ │ ├── Foo6Command.php │ │ │ ├── FooCommand.php │ │ │ ├── FooSubnamespaced1Command.php │ │ │ ├── FooSubnamespaced2Command.php │ │ │ ├── FoobarCommand.php │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ ├── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ ├── command_1.php │ │ │ │ │ ├── command_10.php │ │ │ │ │ ├── command_11.php │ │ │ │ │ ├── command_12.php │ │ │ │ │ ├── command_13.php │ │ │ │ │ ├── command_14.php │ │ │ │ │ ├── command_15.php │ │ │ │ │ ├── command_16.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ ├── command_7.php │ │ │ │ │ ├── command_8.php │ │ │ │ │ └── command_9.php │ │ │ │ │ └── output │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_10.txt │ │ │ │ │ ├── output_11.txt │ │ │ │ │ ├── output_12.txt │ │ │ │ │ ├── output_13.txt │ │ │ │ │ ├── output_14.txt │ │ │ │ │ ├── output_15.txt │ │ │ │ │ ├── output_16.txt │ │ │ │ │ ├── output_2.txt │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_4.txt │ │ │ │ │ ├── output_5.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── output_8.txt │ │ │ │ │ └── output_9.txt │ │ │ ├── TestCommand.php │ │ │ ├── application_1.json │ │ │ ├── application_1.md │ │ │ ├── application_1.txt │ │ │ ├── application_1.xml │ │ │ ├── application_2.json │ │ │ ├── application_2.md │ │ │ ├── application_2.txt │ │ │ ├── application_2.xml │ │ │ ├── application_astext1.txt │ │ │ ├── application_astext2.txt │ │ │ ├── application_gethelp.txt │ │ │ ├── application_renderexception1.txt │ │ │ ├── application_renderexception2.txt │ │ │ ├── application_renderexception3.txt │ │ │ ├── application_renderexception3decorated.txt │ │ │ ├── application_renderexception4.txt │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ ├── application_run1.txt │ │ │ ├── application_run2.txt │ │ │ ├── application_run3.txt │ │ │ ├── application_run4.txt │ │ │ ├── command_1.json │ │ │ ├── command_1.md │ │ │ ├── command_1.txt │ │ │ ├── command_1.xml │ │ │ ├── command_2.json │ │ │ ├── command_2.md │ │ │ ├── command_2.txt │ │ │ ├── command_2.xml │ │ │ ├── command_astext.txt │ │ │ ├── command_asxml.txt │ │ │ ├── definition_astext.txt │ │ │ ├── definition_asxml.txt │ │ │ ├── input_argument_1.json │ │ │ ├── input_argument_1.md │ │ │ ├── input_argument_1.txt │ │ │ ├── input_argument_1.xml │ │ │ ├── input_argument_2.json │ │ │ ├── input_argument_2.md │ │ │ ├── input_argument_2.txt │ │ │ ├── input_argument_2.xml │ │ │ ├── input_argument_3.json │ │ │ ├── input_argument_3.md │ │ │ ├── input_argument_3.txt │ │ │ ├── input_argument_3.xml │ │ │ ├── input_argument_4.json │ │ │ ├── input_argument_4.md │ │ │ ├── input_argument_4.txt │ │ │ ├── input_argument_4.xml │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_1.md │ │ │ ├── input_definition_1.txt │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.json │ │ │ ├── input_definition_2.md │ │ │ ├── input_definition_2.txt │ │ │ ├── input_definition_2.xml │ │ │ ├── input_definition_3.json │ │ │ ├── input_definition_3.md │ │ │ ├── input_definition_3.txt │ │ │ ├── input_definition_3.xml │ │ │ ├── input_definition_4.json │ │ │ ├── input_definition_4.md │ │ │ ├── input_definition_4.txt │ │ │ ├── input_definition_4.xml │ │ │ ├── input_option_1.json │ │ │ ├── input_option_1.md │ │ │ ├── input_option_1.txt │ │ │ ├── input_option_1.xml │ │ │ ├── input_option_2.json │ │ │ ├── input_option_2.md │ │ │ ├── input_option_2.txt │ │ │ ├── input_option_2.xml │ │ │ ├── input_option_3.json │ │ │ ├── input_option_3.md │ │ │ ├── input_option_3.txt │ │ │ ├── input_option_3.xml │ │ │ ├── input_option_4.json │ │ │ ├── input_option_4.md │ │ │ ├── input_option_4.txt │ │ │ ├── input_option_4.xml │ │ │ ├── input_option_5.json │ │ │ ├── input_option_5.md │ │ │ ├── input_option_5.txt │ │ │ ├── input_option_5.xml │ │ │ ├── input_option_6.json │ │ │ ├── input_option_6.md │ │ │ ├── input_option_6.txt │ │ │ └── input_option_6.xml │ │ ├── Formatter │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ ├── OutputFormatterStyleTest.php │ │ │ └── OutputFormatterTest.php │ │ ├── Helper │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── HelperTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ ├── TableStyleTest.php │ │ │ └── TableTest.php │ │ ├── Input │ │ │ ├── ArgvInputTest.php │ │ │ ├── ArrayInputTest.php │ │ │ ├── InputArgumentTest.php │ │ │ ├── InputDefinitionTest.php │ │ │ ├── InputOptionTest.php │ │ │ ├── InputTest.php │ │ │ └── StringInputTest.php │ │ ├── Logger │ │ │ └── ConsoleLoggerTest.php │ │ ├── Output │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── NullOutputTest.php │ │ │ ├── OutputTest.php │ │ │ └── StreamOutputTest.php │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── css-selector │ ├── .gitignore │ ├── CHANGELOG.md │ ├── 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 │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ ├── composer.json │ └── phpunit.xml.dist ├── debug │ ├── .gitignore │ ├── BufferingLogger.php │ ├── CHANGELOG.md │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── ErrorHandler.php │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ContextErrorException.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 │ │ │ └── tests │ │ │ ├── 001.phpt │ │ │ ├── 002.phpt │ │ │ ├── 002_1.phpt │ │ │ └── 003.phpt │ ├── Tests │ │ ├── DebugClassLoaderTest.php │ │ ├── ErrorHandlerTest.php │ │ ├── Exception │ │ │ └── FlattenExceptionTest.php │ │ ├── ExceptionHandlerTest.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ ├── Fixtures │ │ │ ├── ClassAlias.php │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── PEARClass.php │ │ │ ├── ToStringThrower.php │ │ │ ├── casemismatch.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ └── reallyNotPsr0.php │ │ ├── Fixtures2 │ │ │ └── RequiredTwice.php │ │ ├── HeaderMock.php │ │ └── MockExceptionHandler.php │ ├── composer.json │ └── phpunit.xml.dist ├── dom-crawler │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ │ ├── ChoiceFormField.php │ │ ├── FileFormField.php │ │ ├── FormField.php │ │ ├── InputFormField.php │ │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Tests │ │ ├── CrawlerTest.php │ │ ├── Field │ │ │ ├── ChoiceFormFieldTest.php │ │ │ ├── FileFormFieldTest.php │ │ │ ├── FormFieldTest.php │ │ │ ├── FormFieldTestCase.php │ │ │ ├── InputFormFieldTest.php │ │ │ └── TextareaFormFieldTest.php │ │ ├── Fixtures │ │ │ ├── no-extension │ │ │ └── windows-1250.html │ │ ├── FormTest.php │ │ └── LinkTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── event-dispatcher │ ├── .gitignore │ ├── CHANGELOG.md │ ├── ContainerAwareEventDispatcher.php │ ├── Debug │ │ ├── TraceableEventDispatcher.php │ │ ├── TraceableEventDispatcherInterface.php │ │ └── WrappedListener.php │ ├── DependencyInjection │ │ └── RegisterListenersPass.php │ ├── Event.php │ ├── EventDispatcher.php │ ├── EventDispatcherInterface.php │ ├── EventSubscriberInterface.php │ ├── GenericEvent.php │ ├── ImmutableEventDispatcher.php │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ ├── AbstractEventDispatcherTest.php │ │ ├── ContainerAwareEventDispatcherTest.php │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ ├── EventDispatcherTest.php │ │ ├── EventTest.php │ │ ├── GenericEventTest.php │ │ └── ImmutableEventDispatcherTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── finder │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Comparator │ │ ├── Comparator.php │ │ ├── DateComparator.php │ │ └── NumberComparator.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ └── ExceptionInterface.php │ ├── Finder.php │ ├── Glob.php │ ├── Iterator │ │ ├── CustomFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── ExcludeDirectoryFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ ├── FilenameFilterIterator.php │ │ ├── FilterIterator.php │ │ ├── MultiplePcreFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── RecursiveDirectoryIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ └── SortableIterator.php │ ├── LICENSE │ ├── README.md │ ├── SplFileInfo.php │ ├── Tests │ │ ├── Comparator │ │ │ ├── ComparatorTest.php │ │ │ ├── DateComparatorTest.php │ │ │ └── NumberComparatorTest.php │ │ ├── FinderTest.php │ │ ├── Fixtures │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ └── a.dat │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ ├── dolor.txt │ │ │ ├── ipsum.txt │ │ │ ├── lorem.txt │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ └── with space │ │ │ │ └── foo.txt │ │ ├── GlobTest.php │ │ └── Iterator │ │ │ ├── CustomFilterIteratorTest.php │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ ├── FilterIteratorTest.php │ │ │ ├── Iterator.php │ │ │ ├── IteratorTestCase.php │ │ │ ├── MockFileListIterator.php │ │ │ ├── MockSplFileInfo.php │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ ├── PathFilterIteratorTest.php │ │ │ ├── RealIteratorTestCase.php │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ └── SortableIteratorTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-foundation │ ├── .gitignore │ ├── 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 │ ├── Response.php │ ├── ResponseHeaderBag.php │ ├── ServerBag.php │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionInterface.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── MemcacheSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NativeSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ └── WriteCheckSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ ├── NativeProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ ├── Tests │ │ ├── AcceptHeaderItemTest.php │ │ ├── AcceptHeaderTest.php │ │ ├── ApacheRequestTest.php │ │ ├── BinaryFileResponseTest.php │ │ ├── CookieTest.php │ │ ├── ExpressionRequestMatcherTest.php │ │ ├── File │ │ │ ├── FakeFile.php │ │ │ ├── FileTest.php │ │ │ ├── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ ├── MimeType │ │ │ │ └── MimeTypeTest.php │ │ │ └── UploadedFileTest.php │ │ ├── FileBagTest.php │ │ ├── HeaderBagTest.php │ │ ├── IpUtilsTest.php │ │ ├── JsonResponseTest.php │ │ ├── ParameterBagTest.php │ │ ├── RedirectResponseTest.php │ │ ├── RequestMatcherTest.php │ │ ├── RequestStackTest.php │ │ ├── RequestTest.php │ │ ├── ResponseHeaderBagTest.php │ │ ├── ResponseTest.php │ │ ├── ResponseTestCase.php │ │ ├── ServerBagTest.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBagTest.php │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ └── FlashBagTest.php │ │ │ ├── SessionTest.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ ├── MetadataBagTest.php │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ └── Proxy │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ ├── NativeProxyTest.php │ │ │ │ └── SessionHandlerProxyTest.php │ │ └── StreamedResponseTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-kernel │ ├── .gitignore │ ├── Bundle │ │ ├── Bundle.php │ │ └── BundleInterface.php │ ├── CHANGELOG.md │ ├── CacheClearer │ │ ├── CacheClearerInterface.php │ │ └── ChainCacheClearer.php │ ├── CacheWarmer │ │ ├── CacheWarmer.php │ │ ├── CacheWarmerAggregate.php │ │ ├── CacheWarmerInterface.php │ │ └── WarmableInterface.php │ ├── Client.php │ ├── Config │ │ ├── EnvParametersResource.php │ │ └── FileLocator.php │ ├── Controller │ │ ├── ControllerReference.php │ │ ├── ControllerResolver.php │ │ ├── ControllerResolverInterface.php │ │ └── TraceableControllerResolver.php │ ├── DataCollector │ │ ├── AjaxDataCollector.php │ │ ├── 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 │ │ └── TraceableEventDispatcher.php │ ├── DependencyInjection │ │ ├── AddClassesToCachePass.php │ │ ├── ConfigurableExtension.php │ │ ├── Extension.php │ │ ├── FragmentRendererPass.php │ │ ├── LazyLoadingFragmentHandler.php │ │ └── MergeExtensionConfigurationPass.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── HttpCache.php │ │ ├── ResponseCacheStrategy.php │ │ ├── ResponseCacheStrategyInterface.php │ │ ├── Ssi.php │ │ ├── Store.php │ │ ├── StoreInterface.php │ │ └── SurrogateInterface.php │ ├── HttpKernel.php │ ├── HttpKernelInterface.php │ ├── Kernel.php │ ├── KernelEvents.php │ ├── KernelInterface.php │ ├── LICENSE │ ├── Log │ │ └── DebugLoggerInterface.php │ ├── Profiler │ │ ├── FileProfilerStorage.php │ │ ├── Profile.php │ │ ├── Profiler.php │ │ └── ProfilerStorageInterface.php │ ├── README.md │ ├── TerminableInterface.php │ ├── Tests │ │ ├── Bundle │ │ │ └── BundleTest.php │ │ ├── CacheClearer │ │ │ └── ChainCacheClearerTest.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ └── CacheWarmerTest.php │ │ ├── ClientTest.php │ │ ├── Config │ │ │ ├── EnvParametersResourceTest.php │ │ │ └── FileLocatorTest.php │ │ ├── Controller │ │ │ └── ControllerResolverTest.php │ │ ├── DataCollector │ │ │ ├── ConfigDataCollectorTest.php │ │ │ ├── DumpDataCollectorTest.php │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ ├── LoggerDataCollectorTest.php │ │ │ ├── MemoryDataCollectorTest.php │ │ │ ├── RequestDataCollectorTest.php │ │ │ ├── TimeDataCollectorTest.php │ │ │ └── Util │ │ │ │ └── ValueExporterTest.php │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ ├── FragmentRendererPassTest.php │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ └── MergeExtensionConfigurationPassTest.php │ │ ├── EventListener │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ ├── DebugHandlersListenerTest.php │ │ │ ├── DumpListenerTest.php │ │ │ ├── ExceptionListenerTest.php │ │ │ ├── FragmentListenerTest.php │ │ │ ├── LocaleListenerTest.php │ │ │ ├── ProfilerListenerTest.php │ │ │ ├── ResponseListenerTest.php │ │ │ ├── RouterListenerTest.php │ │ │ ├── SurrogateListenerTest.php │ │ │ ├── TestSessionListenerTest.php │ │ │ ├── TranslatorListenerTest.php │ │ │ └── ValidateRequestListenerTest.php │ │ ├── Fixtures │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ ├── Bundle1Bundle │ │ │ │ ├── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── bar.txt │ │ │ │ └── foo.txt │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ ├── Controller │ │ │ │ └── VariadicController.php │ │ │ ├── ExtensionAbsentBundle │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ ├── ExtensionLoadedBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ ├── ExtensionNotValidBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ ├── ExtensionPresentBundle │ │ │ │ ├── Command │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ └── FooCommand.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ └── ExtensionPresentBundle.php │ │ │ ├── KernelForOverrideName.php │ │ │ ├── KernelForTest.php │ │ │ ├── Resources │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ └── FooBundle │ │ │ │ │ └── foo.txt │ │ │ ├── TestClient.php │ │ │ └── TestEventDispatcher.php │ │ ├── Fragment │ │ │ ├── EsiFragmentRendererTest.php │ │ │ ├── FragmentHandlerTest.php │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ ├── InlineFragmentRendererTest.php │ │ │ └── RoutableFragmentRendererTest.php │ │ ├── HttpCache │ │ │ ├── EsiTest.php │ │ │ ├── HttpCacheTest.php │ │ │ ├── HttpCacheTestCase.php │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ ├── SsiTest.php │ │ │ ├── StoreTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── TestMultipleHttpKernel.php │ │ ├── HttpKernelTest.php │ │ ├── KernelTest.php │ │ ├── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorageTest.php │ │ │ └── ProfilerTest.php │ │ ├── TestHttpKernel.php │ │ └── UriSignerTest.php │ ├── UriSigner.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-php56 │ ├── LICENSE │ ├── Php56.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-util │ ├── Binary.php │ ├── BinaryNoFuncOverload.php │ ├── BinaryOnFuncOverload.php │ ├── LICENSE │ ├── README.md │ ├── TestListener.php │ └── composer.json ├── process │ ├── .gitignore │ ├── 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 │ ├── Tests │ │ ├── ExecutableFinderTest.php │ │ ├── NonStopableProcess.php │ │ ├── PhpExecutableFinderTest.php │ │ ├── PhpProcessTest.php │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ ├── ProcessBuilderTest.php │ │ ├── ProcessFailedExceptionTest.php │ │ ├── ProcessTest.php │ │ ├── ProcessUtilsTest.php │ │ └── SignalListener.php │ ├── composer.json │ └── phpunit.xml.dist ├── psr-http-message-bridge │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG │ ├── Factory │ │ ├── DiactorosFactory.php │ │ └── HttpFoundationFactory.php │ ├── HttpFoundationFactoryInterface.php │ ├── HttpMessageFactoryInterface.php │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ ├── Factory │ │ │ ├── DiactorosFactoryTest.php │ │ │ └── HttpFoundationFactoryTest.php │ │ └── Fixtures │ │ │ ├── Message.php │ │ │ ├── Response.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── UploadedFile.php │ │ │ └── Uri.php │ ├── composer.json │ └── phpunit.xml.dist ├── routing │ ├── .gitignore │ ├── Annotation │ │ └── Route.php │ ├── CHANGELOG.md │ ├── CompiledRoute.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidParameterException.php │ │ ├── MethodNotAllowedException.php │ │ ├── MissingMandatoryParametersException.php │ │ ├── ResourceNotFoundException.php │ │ └── RouteNotFoundException.php │ ├── Generator │ │ ├── ConfigurableRequirementsInterface.php │ │ ├── Dumper │ │ │ ├── GeneratorDumper.php │ │ │ ├── GeneratorDumperInterface.php │ │ │ └── PhpGeneratorDumper.php │ │ ├── UrlGenerator.php │ │ └── UrlGeneratorInterface.php │ ├── LICENSE │ ├── Loader │ │ ├── AnnotationClassLoader.php │ │ ├── AnnotationDirectoryLoader.php │ │ ├── AnnotationFileLoader.php │ │ ├── ClosureLoader.php │ │ ├── DependencyInjection │ │ │ └── ServiceRouterLoader.php │ │ ├── DirectoryLoader.php │ │ ├── ObjectRouteLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── routing │ │ │ └── routing-1.0.xsd │ ├── Matcher │ │ ├── Dumper │ │ │ ├── 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 │ ├── RouteCollectionBuilder.php │ ├── RouteCompiler.php │ ├── RouteCompilerInterface.php │ ├── Router.php │ ├── RouterInterface.php │ ├── Tests │ │ ├── Annotation │ │ │ └── RouteTest.php │ │ ├── CompiledRouteTest.php │ │ ├── Fixtures │ │ │ ├── AnnotatedClasses │ │ │ │ ├── AbstractClass.php │ │ │ │ ├── BarClass.php │ │ │ │ ├── FooClass.php │ │ │ │ └── FooTrait.php │ │ │ ├── CustomXmlFileLoader.php │ │ │ ├── OtherAnnotatedClasses │ │ │ │ └── VariadicClass.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── annotated.php │ │ │ ├── bad_format.yml │ │ │ ├── bar.xml │ │ │ ├── directory │ │ │ │ ├── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ └── routes3.yml │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ ├── dumper │ │ │ │ ├── url_matcher1.apache │ │ │ │ ├── url_matcher1.php │ │ │ │ ├── url_matcher2.apache │ │ │ │ ├── url_matcher2.php │ │ │ │ └── url_matcher3.php │ │ │ ├── empty.yml │ │ │ ├── file_resource.yml │ │ │ ├── foo.xml │ │ │ ├── foo1.xml │ │ │ ├── incomplete.yml │ │ │ ├── missing_id.xml │ │ │ ├── missing_path.xml │ │ │ ├── namespaceprefix.xml │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ ├── nonesense_type_without_resource.yml │ │ │ ├── nonvalid.xml │ │ │ ├── nonvalid.yml │ │ │ ├── nonvalid2.yml │ │ │ ├── nonvalidkeys.yml │ │ │ ├── nonvalidnode.xml │ │ │ ├── nonvalidroute.xml │ │ │ ├── null_values.xml │ │ │ ├── special_route_name.yml │ │ │ ├── validpattern.php │ │ │ ├── validpattern.xml │ │ │ ├── validpattern.yml │ │ │ ├── validresource.php │ │ │ ├── validresource.xml │ │ │ ├── validresource.yml │ │ │ ├── with_define_path_variable.php │ │ │ └── withdoctype.xml │ │ ├── Generator │ │ │ ├── Dumper │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ └── UrlGeneratorTest.php │ │ ├── Loader │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ ├── ClosureLoaderTest.php │ │ │ ├── DirectoryLoaderTest.php │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── XmlFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ ├── Matcher │ │ │ ├── Dumper │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ │ └── PhpMatcherDumperTest.php │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ └── UrlMatcherTest.php │ │ ├── RequestContextTest.php │ │ ├── RouteCollectionBuilderTest.php │ │ ├── RouteCollectionTest.php │ │ ├── RouteCompilerTest.php │ │ ├── RouteTest.php │ │ └── RouterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── translation │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Catalogue │ │ ├── AbstractOperation.php │ │ ├── MergeOperation.php │ │ ├── OperationInterface.php │ │ └── TargetOperation.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 │ │ ├── FileLoader.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 │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ ├── LoggingTranslator.php │ ├── MessageCatalogue.php │ ├── MessageCatalogueInterface.php │ ├── MessageSelector.php │ ├── MetadataAwareInterface.php │ ├── PluralizationRules.php │ ├── README.md │ ├── Tests │ │ ├── Catalogue │ │ │ ├── AbstractOperationTest.php │ │ │ ├── MergeOperationTest.php │ │ │ └── TargetOperationTest.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollectorTest.php │ │ ├── DataCollectorTranslatorTest.php │ │ ├── Dumper │ │ │ ├── CsvFileDumperTest.php │ │ │ ├── FileDumperTest.php │ │ │ ├── IcuResFileDumperTest.php │ │ │ ├── IniFileDumperTest.php │ │ │ ├── JsonFileDumperTest.php │ │ │ ├── MoFileDumperTest.php │ │ │ ├── PhpFileDumperTest.php │ │ │ ├── PoFileDumperTest.php │ │ │ ├── QtFileDumperTest.php │ │ │ ├── XliffFileDumperTest.php │ │ │ └── YamlFileDumperTest.php │ │ ├── IdentityTranslatorTest.php │ │ ├── IntervalTest.php │ │ ├── Loader │ │ │ ├── CsvFileLoaderTest.php │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ ├── IcuResFileLoaderTest.php │ │ │ ├── IniFileLoaderTest.php │ │ │ ├── JsonFileLoaderTest.php │ │ │ ├── LocalizedTestCase.php │ │ │ ├── MoFileLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── PoFileLoaderTest.php │ │ │ ├── QtFileLoaderTest.php │ │ │ ├── XliffFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ ├── LoggingTranslatorTest.php │ │ ├── MessageCatalogueTest.php │ │ ├── MessageSelectorTest.php │ │ ├── PluralizationRulesTest.php │ │ ├── TranslatorCacheTest.php │ │ ├── TranslatorTest.php │ │ ├── Util │ │ │ └── ArrayConverterTest.php │ │ ├── Writer │ │ │ └── TranslationWriterTest.php │ │ └── fixtures │ │ │ ├── empty-translation.mo │ │ │ ├── empty-translation.po │ │ │ ├── empty.csv │ │ │ ├── empty.ini │ │ │ ├── empty.json │ │ │ ├── empty.mo │ │ │ ├── empty.po │ │ │ ├── empty.xlf │ │ │ ├── empty.yml │ │ │ ├── encoding.xlf │ │ │ ├── escaped-id-plurals.po │ │ │ ├── escaped-id.po │ │ │ ├── fuzzy-translations.po │ │ │ ├── invalid-xml-resources.xlf │ │ │ ├── malformed.json │ │ │ ├── messages.yml │ │ │ ├── messages_linear.yml │ │ │ ├── non-valid.xlf │ │ │ ├── non-valid.yml │ │ │ ├── plurals.mo │ │ │ ├── plurals.po │ │ │ ├── resname.xlf │ │ │ ├── resourcebundle │ │ │ ├── corrupted │ │ │ │ └── resources.dat │ │ │ ├── dat │ │ │ │ ├── en.res │ │ │ │ ├── en.txt │ │ │ │ ├── fr.res │ │ │ │ ├── fr.txt │ │ │ │ ├── packagelist.txt │ │ │ │ └── resources.dat │ │ │ └── res │ │ │ │ └── en.res │ │ │ ├── resources-2.0-clean.xlf │ │ │ ├── resources-2.0.xlf │ │ │ ├── resources-clean.xlf │ │ │ ├── resources-target-attributes.xlf │ │ │ ├── resources-tool-info.xlf │ │ │ ├── resources.csv │ │ │ ├── resources.dump.json │ │ │ ├── resources.ini │ │ │ ├── resources.json │ │ │ ├── resources.mo │ │ │ ├── resources.php │ │ │ ├── resources.po │ │ │ ├── resources.ts │ │ │ ├── resources.xlf │ │ │ ├── resources.yml │ │ │ ├── valid.csv │ │ │ ├── with-attributes.xlf │ │ │ ├── withdoctype.xlf │ │ │ └── withnote.xlf │ ├── Translator.php │ ├── TranslatorBagInterface.php │ ├── TranslatorInterface.php │ ├── Util │ │ └── ArrayConverter.php │ ├── Writer │ │ └── TranslationWriter.php │ ├── composer.json │ └── phpunit.xml.dist ├── var-dumper │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── Caster.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DoctrineCaster.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FrameStub.php │ │ ├── MongoCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── TraceStub.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 │ ├── Test │ │ └── VarDumperTestTrait.php │ ├── Tests │ │ ├── Caster │ │ │ ├── CasterTest.php │ │ │ ├── PdoCasterTest.php │ │ │ ├── ReflectionCasterTest.php │ │ │ └── SplCasterTest.php │ │ ├── CliDumperTest.php │ │ ├── Fixtures │ │ │ ├── GeneratorDemo.php │ │ │ ├── NotLoadableClass.php │ │ │ ├── Twig.php │ │ │ └── dumb-var.php │ │ ├── HtmlDumperTest.php │ │ ├── Test │ │ │ └── VarDumperTestTraitTest.php │ │ └── VarClonerTest.php │ ├── VarDumper.php │ ├── composer.json │ └── phpunit.xml.dist └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tests │ ├── DumperTest.php │ ├── Fixtures │ │ ├── YtsAnchorAlias.yml │ │ ├── YtsBasicTests.yml │ │ ├── YtsBlockMapping.yml │ │ ├── YtsDocumentSeparator.yml │ │ ├── YtsErrorTests.yml │ │ ├── YtsFlowCollections.yml │ │ ├── YtsFoldedScalars.yml │ │ ├── YtsNullsAndEmpties.yml │ │ ├── YtsSpecificationExamples.yml │ │ ├── YtsTypeTransfers.yml │ │ ├── arrow.gif │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── multiple_lines_as_literal_block.yml │ │ ├── sfComments.yml │ │ ├── sfCompact.yml │ │ ├── sfMergeKey.yml │ │ ├── sfObjects.yml │ │ ├── sfQuotes.yml │ │ ├── sfTests.yml │ │ └── unindentedCollections.yml │ ├── InlineTest.php │ ├── ParseExceptionTest.php │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── tymon └── jwt-auth │ ├── .gitignore │ ├── .styleci.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── Blacklist.php │ ├── Claims │ │ ├── Audience.php │ │ ├── Claim.php │ │ ├── ClaimInterface.php │ │ ├── Custom.php │ │ ├── Expiration.php │ │ ├── Factory.php │ │ ├── IssuedAt.php │ │ ├── Issuer.php │ │ ├── JwtId.php │ │ ├── NotBefore.php │ │ └── Subject.php │ ├── Commands │ │ └── JWTGenerateCommand.php │ ├── Exceptions │ │ ├── InvalidClaimException.php │ │ ├── JWTException.php │ │ ├── PayloadException.php │ │ ├── TokenBlacklistedException.php │ │ ├── TokenExpiredException.php │ │ └── TokenInvalidException.php │ ├── Facades │ │ ├── JWTAuth.php │ │ └── JWTFactory.php │ ├── JWTAuth.php │ ├── JWTManager.php │ ├── Middleware │ │ ├── BaseMiddleware.php │ │ ├── GetUserFromToken.php │ │ └── RefreshToken.php │ ├── Payload.php │ ├── PayloadFactory.php │ ├── Providers │ │ ├── Auth │ │ │ ├── AuthInterface.php │ │ │ └── IlluminateAuthAdapter.php │ │ ├── JWT │ │ │ ├── JWTInterface.php │ │ │ ├── JWTProvider.php │ │ │ └── NamshiAdapter.php │ │ ├── JWTAuthServiceProvider.php │ │ ├── Storage │ │ │ ├── IlluminateCacheAdapter.php │ │ │ └── StorageInterface.php │ │ └── User │ │ │ ├── EloquentUserAdapter.php │ │ │ └── UserInterface.php │ ├── Token.php │ ├── Utils.php │ ├── Validators │ │ ├── AbstractValidator.php │ │ ├── PayloadValidator.php │ │ ├── TokenValidator.php │ │ └── ValidatorInterface.php │ └── config │ │ └── config.php │ └── tests │ ├── BlacklistTest.php │ ├── Commands │ └── JWTGenerateCommandTest.php │ ├── JWTAuthTest.php │ ├── JWTManagerTest.php │ ├── Middleware │ └── GetUserFromTokenTest.php │ ├── PayloadFactoryTest.php │ ├── PayloadTest.php │ ├── Providers │ ├── Auth │ │ └── IlluminateAuthAdapterTest.php │ ├── JWT │ │ ├── JWTProviderTest.php │ │ └── NamshiAdapterTest.php │ ├── Storage │ │ └── IlluminateCacheAdapterTest.php │ └── User │ │ └── EloquentUserAdapterTest.php │ ├── Stubs │ └── JWTProviderStub.php │ ├── TokenTest.php │ └── Validators │ ├── PayloadValidatorTest.php │ └── TokenValidatorTest.php ├── vinkla └── hashids │ ├── LICENSE │ ├── composer.json │ ├── config │ └── hashids.php │ └── src │ ├── Facades │ └── Hashids.php │ ├── HashidsFactory.php │ ├── HashidsManager.php │ └── HashidsServiceProvider.php ├── vlucas └── phpdotenv │ ├── LICENSE.txt │ ├── composer.json │ └── src │ ├── Dotenv.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidCallbackException.php │ ├── InvalidFileException.php │ ├── InvalidPathException.php │ └── ValidationException.php │ ├── Loader.php │ └── Validator.php ├── webmozart └── assert │ ├── .composer-auth.json │ ├── .gitignore │ ├── .styleci.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Assert.php │ └── tests │ └── AssertTest.php ├── workerman ├── channel │ ├── README.md │ ├── composer.json │ ├── src │ │ ├── Client.php │ │ └── Server.php │ └── test │ │ └── server.php ├── phpsocket.io │ ├── .gitignore │ ├── README.md │ ├── composer.json │ ├── docs │ │ ├── README.md │ │ └── zh │ │ │ └── README.md │ ├── examples │ │ └── chat │ │ │ ├── README.md │ │ │ ├── public │ │ │ ├── index.html │ │ │ ├── jquery.min.js │ │ │ ├── main.js │ │ │ ├── socket.io-client │ │ │ │ ├── LICENSE │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── on.js │ │ │ │ │ ├── socket.js │ │ │ │ │ └── url.js │ │ │ │ └── socket.io.js │ │ │ └── style.css │ │ │ └── server.php │ ├── src │ │ ├── ChannelAdapter.php │ │ ├── Client.php │ │ ├── Debug.php │ │ ├── DefaultAdapter.php │ │ ├── Engine │ │ │ ├── Engine.php │ │ │ ├── Parser.php │ │ │ ├── Protocols │ │ │ │ ├── Http │ │ │ │ │ ├── Request.php │ │ │ │ │ └── Response.php │ │ │ │ ├── SocketIO.php │ │ │ │ ├── WebSocket.php │ │ │ │ └── WebSocket │ │ │ │ │ └── RFC6455.php │ │ │ ├── Socket.php │ │ │ ├── Transport.php │ │ │ └── Transports │ │ │ │ ├── Polling.php │ │ │ │ ├── PollingJsonp.php │ │ │ │ ├── PollingXHR.php │ │ │ │ └── WebSocket.php │ │ ├── Event │ │ │ └── Emitter.php │ │ ├── Nsp.php │ │ ├── Parser │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ └── Parser.php │ │ ├── Socket.php │ │ ├── SocketIO.php │ │ └── autoload.php │ └── tests │ │ └── emitter.php ├── workerman.log ├── workerman.zip └── workerman │ ├── .gitignore │ ├── Autoloader.php │ ├── Connection │ ├── AsyncTcpConnection.php │ ├── AsyncUdpConnection.php │ ├── ConnectionInterface.php │ ├── TcpConnection.php │ └── UdpConnection.php │ ├── Events │ ├── Ev.php │ ├── Event.php │ ├── EventInterface.php │ ├── Libevent.php │ └── Select.php │ ├── Lib │ ├── Constants.php │ └── Timer.php │ ├── MIT-LICENSE.txt │ ├── Protocols │ ├── Frame.php │ ├── Http.php │ ├── Http │ │ └── mime.types │ ├── ProtocolInterface.php │ ├── Text.php │ ├── Websocket.php │ └── Ws.php │ ├── README.md │ ├── WebServer.php │ ├── Worker.php │ └── composer.json ├── yuanchao └── laravel-5-markdown-editor │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── EndaEditor.php │ ├── EndaEditorServiceProvider.php │ ├── Facade │ └── EndaEditorFacade.php │ ├── Parsedown.php │ └── config │ ├── editor.php │ ├── editor │ ├── css │ │ ├── editor.css │ │ ├── editor.css.map │ │ ├── pygment_trac.css │ │ ├── stylesheet.css │ │ └── zoom.css │ ├── images │ │ ├── code.png │ │ ├── editor@2x.png │ │ ├── loader.gif │ │ ├── pattern.png │ │ ├── tar.png │ │ ├── top.png │ │ └── zip.png │ └── js │ │ ├── MIDI.js │ │ ├── bacheditor.js │ │ ├── bootstrap3-typeahead.js │ │ ├── fileupload.js │ │ ├── highlight.js │ │ ├── marimba-mp3.js │ │ ├── modal.js │ │ ├── piano.js │ │ ├── template.js │ │ └── zoom.js │ └── views │ ├── decode.blade.php │ └── head.blade.php └── zizaco └── entrust ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docs.php ├── phpunit.xml ├── src ├── Entrust │ ├── Contracts │ │ ├── EntrustPermissionInterface.php │ │ ├── EntrustRoleInterface.php │ │ └── EntrustUserInterface.php │ ├── Entrust.php │ ├── EntrustFacade.php │ ├── EntrustPermission.php │ ├── EntrustRole.php │ ├── EntrustServiceProvider.php │ ├── Middleware │ │ ├── EntrustAbility.php │ │ ├── EntrustPermission.php │ │ └── EntrustRole.php │ └── Traits │ │ ├── EntrustPermissionTrait.php │ │ ├── EntrustRoleTrait.php │ │ └── EntrustUserTrait.php ├── commands │ └── MigrationCommand.php ├── config │ └── config.php └── views │ └── generators │ └── migration.blade.php └── tests ├── EntrustTest.php ├── EntrustUserTest.php └── Middleware ├── EntrustAbilityTest.php ├── EntrustPermissionTest.php ├── EntrustRoleTest.php └── MiddlewareTest.php /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "Public/module" 3 | } -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/README.md -------------------------------------------------------------------------------- /app/Common/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/function.php -------------------------------------------------------------------------------- /app/Common/lib/Cates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/lib/Cates.php -------------------------------------------------------------------------------- /app/Common/lib/Guestinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/lib/Guestinfo.php -------------------------------------------------------------------------------- /app/Common/lib/aes/ErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/lib/aes/ErrorCode.php -------------------------------------------------------------------------------- /app/Common/lib/aes/PKCS7Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/lib/aes/PKCS7Encoder.php -------------------------------------------------------------------------------- /app/Common/lib/aes/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Common/lib/aes/demo.php -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Model/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Article.php -------------------------------------------------------------------------------- /app/Http/Model/Attributegroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Attributegroup.php -------------------------------------------------------------------------------- /app/Http/Model/Attributevalue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Attributevalue.php -------------------------------------------------------------------------------- /app/Http/Model/Classify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Classify.php -------------------------------------------------------------------------------- /app/Http/Model/Classifylink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Classifylink.php -------------------------------------------------------------------------------- /app/Http/Model/Classifyproduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Classifyproduct.php -------------------------------------------------------------------------------- /app/Http/Model/Classifyquestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Classifyquestion.php -------------------------------------------------------------------------------- /app/Http/Model/Classifywechat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Classifywechat.php -------------------------------------------------------------------------------- /app/Http/Model/District.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/District.php -------------------------------------------------------------------------------- /app/Http/Model/Experience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Experience.php -------------------------------------------------------------------------------- /app/Http/Model/Expresstemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Expresstemplate.php -------------------------------------------------------------------------------- /app/Http/Model/Expressvalue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Expressvalue.php -------------------------------------------------------------------------------- /app/Http/Model/Letter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Letter.php -------------------------------------------------------------------------------- /app/Http/Model/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Link.php -------------------------------------------------------------------------------- /app/Http/Model/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Log.php -------------------------------------------------------------------------------- /app/Http/Model/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Navigation.php -------------------------------------------------------------------------------- /app/Http/Model/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Permission.php -------------------------------------------------------------------------------- /app/Http/Model/Picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Picture.php -------------------------------------------------------------------------------- /app/Http/Model/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Product.php -------------------------------------------------------------------------------- /app/Http/Model/Productattribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Productattribute.php -------------------------------------------------------------------------------- /app/Http/Model/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Question.php -------------------------------------------------------------------------------- /app/Http/Model/Questionoption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Questionoption.php -------------------------------------------------------------------------------- /app/Http/Model/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Role.php -------------------------------------------------------------------------------- /app/Http/Model/Score.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Score.php -------------------------------------------------------------------------------- /app/Http/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/User.php -------------------------------------------------------------------------------- /app/Http/Model/Userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Userinfo.php -------------------------------------------------------------------------------- /app/Http/Model/Wechat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Wechat.php -------------------------------------------------------------------------------- /app/Http/Model/Wechatkeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Wechatkeyword.php -------------------------------------------------------------------------------- /app/Http/Model/Wechatreplytext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Wechatreplytext.php -------------------------------------------------------------------------------- /app/Http/Model/Wechatuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Wechatuser.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxaddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxaddress.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxbusinesscard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxbusinesscard.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxmp.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxscore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxscore.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxshoppingcart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxshoppingcart.php -------------------------------------------------------------------------------- /app/Http/Model/Xcxuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Model/Xcxuser.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/bower.json -------------------------------------------------------------------------------- /cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/composer.lock -------------------------------------------------------------------------------- /config/UEditorUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/UEditorUpload.php -------------------------------------------------------------------------------- /config/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/api.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/editor.php -------------------------------------------------------------------------------- /config/entrust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/entrust.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/hashids.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/image.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/DistrictSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/DistrictSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/PermissionSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/UserSeeder.php -------------------------------------------------------------------------------- /database/seeds/district.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/database/seeds/district.sql -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | *!phpMyAdmin/ 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build/css/home-ea169388a7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/css/home-ea169388a7.css -------------------------------------------------------------------------------- /public/build/css/user-44c1e94bc8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/css/user-44c1e94bc8.css -------------------------------------------------------------------------------- /public/build/js/admin-2e4525e381.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/js/admin-2e4525e381.js -------------------------------------------------------------------------------- /public/build/js/home-5198eec6a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/js/home-5198eec6a3.js -------------------------------------------------------------------------------- /public/build/js/login-21580a9cd9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/js/login-21580a9cd9.js -------------------------------------------------------------------------------- /public/build/js/user-d490567b76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/js/user-d490567b76.js -------------------------------------------------------------------------------- /public/build/rev-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/build/rev-manifest.json -------------------------------------------------------------------------------- /public/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/css/admin.css -------------------------------------------------------------------------------- /public/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/css/home.css -------------------------------------------------------------------------------- /public/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/css/login.css -------------------------------------------------------------------------------- /public/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/css/user.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/alipay.jpg -------------------------------------------------------------------------------- /public/images/avatar/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/avatar/200.png -------------------------------------------------------------------------------- /public/images/avatar/400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/avatar/400.png -------------------------------------------------------------------------------- /public/images/avatar/800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/avatar/800.png -------------------------------------------------------------------------------- /public/images/emjoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/emjoi.png -------------------------------------------------------------------------------- /public/images/home/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/banner1.jpg -------------------------------------------------------------------------------- /public/images/home/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/banner2.jpg -------------------------------------------------------------------------------- /public/images/home/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/banner3.jpg -------------------------------------------------------------------------------- /public/images/home/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/banner4.jpg -------------------------------------------------------------------------------- /public/images/home/banner5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/banner5.jpg -------------------------------------------------------------------------------- /public/images/home/bannerad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/bannerad.jpg -------------------------------------------------------------------------------- /public/images/home/chi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/chi.gif -------------------------------------------------------------------------------- /public/images/home/dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/dc.jpg -------------------------------------------------------------------------------- /public/images/home/demo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/1.png -------------------------------------------------------------------------------- /public/images/home/demo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/2.png -------------------------------------------------------------------------------- /public/images/home/demo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/3.png -------------------------------------------------------------------------------- /public/images/home/demo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/4.png -------------------------------------------------------------------------------- /public/images/home/demo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/5.png -------------------------------------------------------------------------------- /public/images/home/demo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/6.png -------------------------------------------------------------------------------- /public/images/home/demo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/7.png -------------------------------------------------------------------------------- /public/images/home/demo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/demo/8.png -------------------------------------------------------------------------------- /public/images/home/ic11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/ic11.jpg -------------------------------------------------------------------------------- /public/images/home/ic12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/ic12.jpg -------------------------------------------------------------------------------- /public/images/home/ic13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/ic13.jpg -------------------------------------------------------------------------------- /public/images/home/ic14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/ic14.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/1.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/2.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/3.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/4.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/5.jpg -------------------------------------------------------------------------------- /public/images/home/thumbs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/thumbs/6.jpg -------------------------------------------------------------------------------- /public/images/home/tu/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/1.jpg -------------------------------------------------------------------------------- /public/images/home/tu/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/2.jpg -------------------------------------------------------------------------------- /public/images/home/tu/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/3.jpg -------------------------------------------------------------------------------- /public/images/home/tu/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/4.jpg -------------------------------------------------------------------------------- /public/images/home/tu/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/5.jpg -------------------------------------------------------------------------------- /public/images/home/tu/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/home/tu/6.jpg -------------------------------------------------------------------------------- /public/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/logo/logo.png -------------------------------------------------------------------------------- /public/images/logo/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/images/logo/logo2.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/js/admin.js -------------------------------------------------------------------------------- /public/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/js/home.js -------------------------------------------------------------------------------- /public/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/js/login.js -------------------------------------------------------------------------------- /public/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/js/user.js -------------------------------------------------------------------------------- /public/laravel-u-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/laravel-u-editor/index.html -------------------------------------------------------------------------------- /public/laravel-u-editor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /public/module/AdminLTE/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/.bower.json -------------------------------------------------------------------------------- /public/module/AdminLTE/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/Gruntfile.js -------------------------------------------------------------------------------- /public/module/AdminLTE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/LICENSE -------------------------------------------------------------------------------- /public/module/AdminLTE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/README.md -------------------------------------------------------------------------------- /public/module/AdminLTE/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/bower.json -------------------------------------------------------------------------------- /public/module/AdminLTE/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/changelog.md -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/Respond/1.4.2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vimdir 3 | node_modules 4 | -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/html5shiv/3.7.3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/html5shiv/3.7.3/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/html5shiv/3.7.3/test/data/print.css: -------------------------------------------------------------------------------- 1 | article.print { 2 | border: 5px dotted #000; 3 | } -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/moment/2.11.2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | min/tests.js 3 | -------------------------------------------------------------------------------- /public/module/AdminLTE/dist/js/moment/2.11.2/src/lib/locale/constructor.js: -------------------------------------------------------------------------------- 1 | export function Locale() { 2 | } 3 | -------------------------------------------------------------------------------- /public/module/AdminLTE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/index.html -------------------------------------------------------------------------------- /public/module/AdminLTE/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/index2.html -------------------------------------------------------------------------------- /public/module/AdminLTE/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/package.json -------------------------------------------------------------------------------- /public/module/AdminLTE/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/module/AdminLTE/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/AdminLTE/starter.html -------------------------------------------------------------------------------- /public/module/amazeui/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/.bower.json -------------------------------------------------------------------------------- /public/module/amazeui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/CHANGELOG.md -------------------------------------------------------------------------------- /public/module/amazeui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/LICENSE.md -------------------------------------------------------------------------------- /public/module/amazeui/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/README.en.md -------------------------------------------------------------------------------- /public/module/amazeui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/README.md -------------------------------------------------------------------------------- /public/module/amazeui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/bower.json -------------------------------------------------------------------------------- /public/module/amazeui/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | # dist folder -------------------------------------------------------------------------------- /public/module/amazeui/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | # dist folder -------------------------------------------------------------------------------- /public/module/amazeui/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/gulpfile.js -------------------------------------------------------------------------------- /public/module/amazeui/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/js/core.js -------------------------------------------------------------------------------- /public/module/amazeui/js/ui.alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/js/ui.alert.js -------------------------------------------------------------------------------- /public/module/amazeui/js/ui.modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/js/ui.modal.js -------------------------------------------------------------------------------- /public/module/amazeui/js/ui.share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/js/ui.share.js -------------------------------------------------------------------------------- /public/module/amazeui/js/ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/js/ui.tabs.js -------------------------------------------------------------------------------- /public/module/amazeui/less/amui.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/amui.less -------------------------------------------------------------------------------- /public/module/amazeui/less/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/base.less -------------------------------------------------------------------------------- /public/module/amazeui/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/code.less -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/cyan.less: -------------------------------------------------------------------------------- 1 | @global-primary: #00bcf2; -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/cyan2.less: -------------------------------------------------------------------------------- 1 | @global-primary: #60C9F8; -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/gray.less: -------------------------------------------------------------------------------- 1 | @global-primary: #8E8E93; -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/indigo.less: -------------------------------------------------------------------------------- 1 | @global-primary: #008ED4; -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/orange.less: -------------------------------------------------------------------------------- 1 | @global-primary: #F37B1D; 2 | -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/orange2.less: -------------------------------------------------------------------------------- 1 | @global-primary: #FD9426; 2 | -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/pink.less: -------------------------------------------------------------------------------- 1 | @global-primary: #FC3159; -------------------------------------------------------------------------------- /public/module/amazeui/less/color-schemes/yellow.less: -------------------------------------------------------------------------------- 1 | @global-primary: #ffb900; -------------------------------------------------------------------------------- /public/module/amazeui/less/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/form.less -------------------------------------------------------------------------------- /public/module/amazeui/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/grid.less -------------------------------------------------------------------------------- /public/module/amazeui/less/icon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/icon.less -------------------------------------------------------------------------------- /public/module/amazeui/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/list.less -------------------------------------------------------------------------------- /public/module/amazeui/less/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/less/nav.less -------------------------------------------------------------------------------- /public/module/amazeui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui/package.json -------------------------------------------------------------------------------- /public/module/amazeui/widget/blank/src/blank.default.less: -------------------------------------------------------------------------------- 1 | // Silence is gold! -------------------------------------------------------------------------------- /public/module/amazeui/widget/blank/src/blank.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | VERSION: '2.0.0' 5 | }; 6 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/blank/src/blank.less: -------------------------------------------------------------------------------- 1 | // Silence is gold! -------------------------------------------------------------------------------- /public/module/amazeui/widget/divider/src/divider.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | VERSION: '2.0.1' 5 | }; 6 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout2/src/layout2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout2/src/layout2.less: -------------------------------------------------------------------------------- 1 | // no style -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout3/src/layout3.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout3/src/layout3.less: -------------------------------------------------------------------------------- 1 | // no style -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout4/src/layout4.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/layout4/src/layout4.less: -------------------------------------------------------------------------------- 1 | // no style -------------------------------------------------------------------------------- /public/module/amazeui/widget/map/src/map.less: -------------------------------------------------------------------------------- 1 | // core 2 | .am-map { 3 | width: 100%; 4 | height: 300px; 5 | } 6 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/slider/src/slider.default.less: -------------------------------------------------------------------------------- 1 | //@dependencies ui.flexslider.less 2 | -------------------------------------------------------------------------------- /public/module/amazeui/widget/slider/src/slider.less: -------------------------------------------------------------------------------- 1 | //@dependencies ui.flexslider.less 2 | -------------------------------------------------------------------------------- /public/module/amazeui_admin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui_admin/404.html -------------------------------------------------------------------------------- /public/module/amazeui_admin/白色.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui_admin/白色.psd -------------------------------------------------------------------------------- /public/module/amazeui_admin/黑色.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/amazeui_admin/黑色.psd -------------------------------------------------------------------------------- /public/module/error-404/css/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/error-404/css/404.css -------------------------------------------------------------------------------- /public/module/error-404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/error-404/index.html -------------------------------------------------------------------------------- /public/module/error/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/error/css/style.css -------------------------------------------------------------------------------- /public/module/error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/error/index.html -------------------------------------------------------------------------------- /public/module/handlebars/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/handlebars/.bower.json -------------------------------------------------------------------------------- /public/module/handlebars/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /public/module/handlebars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/handlebars/README.md -------------------------------------------------------------------------------- /public/module/handlebars/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/handlebars/bower.json -------------------------------------------------------------------------------- /public/module/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/.bower.json -------------------------------------------------------------------------------- /public/module/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /public/module/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/LICENSE.txt -------------------------------------------------------------------------------- /public/module/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/README.md -------------------------------------------------------------------------------- /public/module/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/bower.json -------------------------------------------------------------------------------- /public/module/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/dist/jquery.js -------------------------------------------------------------------------------- /public/module/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/.jshintrc -------------------------------------------------------------------------------- /public/module/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/ajax.js -------------------------------------------------------------------------------- /public/module/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/module/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /public/module/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/core.js -------------------------------------------------------------------------------- /public/module/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/css.js -------------------------------------------------------------------------------- /public/module/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/data.js -------------------------------------------------------------------------------- /public/module/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/deferred.js -------------------------------------------------------------------------------- /public/module/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/effects.js -------------------------------------------------------------------------------- /public/module/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/event.js -------------------------------------------------------------------------------- /public/module/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/intro.js -------------------------------------------------------------------------------- /public/module/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/jquery.js -------------------------------------------------------------------------------- /public/module/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/offset.js -------------------------------------------------------------------------------- /public/module/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /public/module/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/queue.js -------------------------------------------------------------------------------- /public/module/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /public/module/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/support.js -------------------------------------------------------------------------------- /public/module/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/module/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /public/module/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /public/module/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/var/push.js -------------------------------------------------------------------------------- /public/module/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/jquery/src/wrap.js -------------------------------------------------------------------------------- /public/module/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/layer/layer.js -------------------------------------------------------------------------------- /public/module/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/layer/skin/layer.css -------------------------------------------------------------------------------- /public/module/login/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/css/style.css -------------------------------------------------------------------------------- /public/module/login/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/Thumbs.db -------------------------------------------------------------------------------- /public/module/login/images/adm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/adm.png -------------------------------------------------------------------------------- /public/module/login/images/avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/avtar.png -------------------------------------------------------------------------------- /public/module/login/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/bg1.jpg -------------------------------------------------------------------------------- /public/module/login/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/close.png -------------------------------------------------------------------------------- /public/module/login/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/code.png -------------------------------------------------------------------------------- /public/module/login/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/email.png -------------------------------------------------------------------------------- /public/module/login/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/key.png -------------------------------------------------------------------------------- /public/module/login/images/pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/images/pwd.png -------------------------------------------------------------------------------- /public/module/login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/login/index.html -------------------------------------------------------------------------------- /public/module/socket.io-client-1.3.7/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /coverage 3 | -------------------------------------------------------------------------------- /public/module/socket.io-client-1.3.7/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /public/module/vue-resource/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue-resource/LICENSE -------------------------------------------------------------------------------- /public/module/vue-resource/test/data/invalid.json: -------------------------------------------------------------------------------- 1 | invalid -------------------------------------------------------------------------------- /public/module/vue-resource/test/data/text.txt: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /public/module/vue-resource/test/data/valid.json: -------------------------------------------------------------------------------- 1 | {"foo": "bar"} -------------------------------------------------------------------------------- /public/module/vue-router/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue-router/LICENSE -------------------------------------------------------------------------------- /public/module/vue-router/src/util/dom.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export const inBrowser = typeof window !== 'undefined' 4 | -------------------------------------------------------------------------------- /public/module/vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/.babelrc -------------------------------------------------------------------------------- /public/module/vue/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/.bower.json -------------------------------------------------------------------------------- /public/module/vue/.eslintignore: -------------------------------------------------------------------------------- 1 | flow 2 | dist 3 | packages 4 | -------------------------------------------------------------------------------- /public/module/vue/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/.eslintrc -------------------------------------------------------------------------------- /public/module/vue/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/.flowconfig -------------------------------------------------------------------------------- /public/module/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/.gitignore -------------------------------------------------------------------------------- /public/module/vue/BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/BACKERS.md -------------------------------------------------------------------------------- /public/module/vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/LICENSE -------------------------------------------------------------------------------- /public/module/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/README.md -------------------------------------------------------------------------------- /public/module/vue/build/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/.eslintrc -------------------------------------------------------------------------------- /public/module/vue/build/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/alias.js -------------------------------------------------------------------------------- /public/module/vue/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/build.js -------------------------------------------------------------------------------- /public/module/vue/build/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/ci.sh -------------------------------------------------------------------------------- /public/module/vue/build/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/config.js -------------------------------------------------------------------------------- /public/module/vue/build/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/build/release.sh -------------------------------------------------------------------------------- /public/module/vue/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/circle.yml -------------------------------------------------------------------------------- /public/module/vue/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/dist/README.md -------------------------------------------------------------------------------- /public/module/vue/dist/vue.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/dist/vue.esm.js -------------------------------------------------------------------------------- /public/module/vue/dist/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/dist/vue.js -------------------------------------------------------------------------------- /public/module/vue/dist/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/dist/vue.min.js -------------------------------------------------------------------------------- /public/module/vue/flow/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/flow/compiler.js -------------------------------------------------------------------------------- /public/module/vue/flow/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/flow/modules.js -------------------------------------------------------------------------------- /public/module/vue/flow/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/flow/options.js -------------------------------------------------------------------------------- /public/module/vue/flow/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/flow/ssr.js -------------------------------------------------------------------------------- /public/module/vue/flow/vnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/flow/vnode.js -------------------------------------------------------------------------------- /public/module/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/package.json -------------------------------------------------------------------------------- /public/module/vue/src/entries/weex-framework.js: -------------------------------------------------------------------------------- 1 | export * from 'weex/framework' 2 | -------------------------------------------------------------------------------- /public/module/vue/src/platforms/weex/runtime/directives/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | } 3 | -------------------------------------------------------------------------------- /public/module/vue/test/ssr/fixtures/error.js: -------------------------------------------------------------------------------- 1 | throw new Error('foo') 2 | -------------------------------------------------------------------------------- /public/module/vue/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/types/index.d.ts -------------------------------------------------------------------------------- /public/module/vue/types/vnode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/types/vnode.d.ts -------------------------------------------------------------------------------- /public/module/vue/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/types/vue.d.ts -------------------------------------------------------------------------------- /public/module/vue/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/module/vue/yarn.lock -------------------------------------------------------------------------------- /public/plugin/editor/css/zoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/plugin/editor/css/zoom.css -------------------------------------------------------------------------------- /public/plugin/editor/js/MIDI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/plugin/editor/js/MIDI.js -------------------------------------------------------------------------------- /public/plugin/editor/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/plugin/editor/js/modal.js -------------------------------------------------------------------------------- /public/plugin/editor/js/piano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/plugin/editor/js/piano.js -------------------------------------------------------------------------------- /public/plugin/editor/js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/plugin/editor/js/zoom.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/watermark/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/watermark/logo.png -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/web.config -------------------------------------------------------------------------------- /public/xcx/icon/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/about.png -------------------------------------------------------------------------------- /public/xcx/icon/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/activity.png -------------------------------------------------------------------------------- /public/xcx/icon/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/address.png -------------------------------------------------------------------------------- /public/xcx/icon/area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/area.png -------------------------------------------------------------------------------- /public/xcx/icon/banquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/banquan.png -------------------------------------------------------------------------------- /public/xcx/icon/business_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/business_card.png -------------------------------------------------------------------------------- /public/xcx/icon/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/calendar.png -------------------------------------------------------------------------------- /public/xcx/icon/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/cancel.png -------------------------------------------------------------------------------- /public/xcx/icon/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/card.png -------------------------------------------------------------------------------- /public/xcx/icon/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/clear.png -------------------------------------------------------------------------------- /public/xcx/icon/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/collection.png -------------------------------------------------------------------------------- /public/xcx/icon/company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/company.png -------------------------------------------------------------------------------- /public/xcx/icon/constellation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/constellation.png -------------------------------------------------------------------------------- /public/xcx/icon/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/contact.png -------------------------------------------------------------------------------- /public/xcx/icon/dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/dial.png -------------------------------------------------------------------------------- /public/xcx/icon/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/edit.png -------------------------------------------------------------------------------- /public/xcx/icon/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/email.png -------------------------------------------------------------------------------- /public/xcx/icon/fankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/fankui.png -------------------------------------------------------------------------------- /public/xcx/icon/fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/fax.png -------------------------------------------------------------------------------- /public/xcx/icon/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/img.png -------------------------------------------------------------------------------- /public/xcx/icon/jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/jiantou.png -------------------------------------------------------------------------------- /public/xcx/icon/meng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/meng.png -------------------------------------------------------------------------------- /public/xcx/icon/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/message.png -------------------------------------------------------------------------------- /public/xcx/icon/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/mobile.png -------------------------------------------------------------------------------- /public/xcx/icon/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/money.png -------------------------------------------------------------------------------- /public/xcx/icon/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/movie.png -------------------------------------------------------------------------------- /public/xcx/icon/price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/price.png -------------------------------------------------------------------------------- /public/xcx/icon/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/qq.png -------------------------------------------------------------------------------- /public/xcx/icon/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/qrcode.png -------------------------------------------------------------------------------- /public/xcx/icon/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/score.png -------------------------------------------------------------------------------- /public/xcx/icon/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/set.png -------------------------------------------------------------------------------- /public/xcx/icon/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/shop.png -------------------------------------------------------------------------------- /public/xcx/icon/shoppingcart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/shoppingcart.png -------------------------------------------------------------------------------- /public/xcx/icon/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/task.png -------------------------------------------------------------------------------- /public/xcx/icon/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/top.png -------------------------------------------------------------------------------- /public/xcx/icon/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/tv.png -------------------------------------------------------------------------------- /public/xcx/icon/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/username.png -------------------------------------------------------------------------------- /public/xcx/icon/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/wechat.png -------------------------------------------------------------------------------- /public/xcx/icon/wether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/wether.png -------------------------------------------------------------------------------- /public/xcx/icon/xiaohua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/icon/xiaohua.png -------------------------------------------------------------------------------- /public/xcx/image/topbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/image/topbg.jpg -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/00.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/01.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/02.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/03.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/04.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/05.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/06.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/07.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/08.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/09.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/10.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/100.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/101.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/102.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/103.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/104.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/105.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/106.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/107.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/108.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/109.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/11.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/110.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/111.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/112.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/113.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/114.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/115.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/116.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/117.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/118.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/119.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/12.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/120.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/121.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/122.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/123.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/124.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/125.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/126.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/127.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/128.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/129.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/13.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/130.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/131.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/132.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/133.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/134.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/14.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/15.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/16.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/17.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/18.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/19.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/20.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/21.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/22.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/23.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/24.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/25.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/26.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/27.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/28.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/29.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/30.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/31.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/32.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/33.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/34.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/35.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/36.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/37.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/38.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/39.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/40.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/41.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/42.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/43.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/44.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/45.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/46.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/47.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/48.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/49.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/50.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/51.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/52.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/53.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/54.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/55.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/56.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/57.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/58.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/59.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/60.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/61.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/62.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/63.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/64.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/65.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/66.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/67.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/68.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/69.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/70.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/71.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/72.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/73.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/74.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/75.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/76.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/77.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/78.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/79.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/80.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/81.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/82.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/83.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/84.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/85.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/86.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/87.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/88.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/89.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/90.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/91.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/92.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/93.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/94.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/95.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/96.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/97.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/98.gif -------------------------------------------------------------------------------- /public/xcx/wxParse/emojis/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/public/xcx/wxParse/emojis/99.gif -------------------------------------------------------------------------------- /resources/assets/css/admin/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/css/admin/app.css -------------------------------------------------------------------------------- /resources/assets/css/home/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/css/home/app.css -------------------------------------------------------------------------------- /resources/assets/css/login/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/css/login/app.css -------------------------------------------------------------------------------- /resources/assets/css/user/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/css/user/app.css -------------------------------------------------------------------------------- /resources/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/admin.js -------------------------------------------------------------------------------- /resources/assets/js/admin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/admin/main.js -------------------------------------------------------------------------------- /resources/assets/js/admin/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/admin/z.js -------------------------------------------------------------------------------- /resources/assets/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/base.js -------------------------------------------------------------------------------- /resources/assets/js/base/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/base/base.js -------------------------------------------------------------------------------- /resources/assets/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/home.js -------------------------------------------------------------------------------- /resources/assets/js/home/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/home/main.js -------------------------------------------------------------------------------- /resources/assets/js/home/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/home/nav.js -------------------------------------------------------------------------------- /resources/assets/js/home/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/home/z.js -------------------------------------------------------------------------------- /resources/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/login.js -------------------------------------------------------------------------------- /resources/assets/js/login/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/login/main.js -------------------------------------------------------------------------------- /resources/assets/js/login/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/login/z.js -------------------------------------------------------------------------------- /resources/assets/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/user.js -------------------------------------------------------------------------------- /resources/assets/js/user/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/user/main.js -------------------------------------------------------------------------------- /resources/assets/js/user/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/js/user/z.js -------------------------------------------------------------------------------- /resources/assets/less/admin/test.less: -------------------------------------------------------------------------------- 1 | .testbg{.bg_img("logo.jpg","admin")} -------------------------------------------------------------------------------- /resources/assets/less/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/less/base.less -------------------------------------------------------------------------------- /resources/assets/less/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/assets/less/common.less -------------------------------------------------------------------------------- /resources/assets/less/user/test.less: -------------------------------------------------------------------------------- 1 | .testbg{.bg_img("logo.jpg","user")} -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/admin.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/api.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/default.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/login.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/passwords.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/register.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/lang/zh-CN/user.php -------------------------------------------------------------------------------- /resources/views/admin/include/fieldvalue/v-for.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/include/vue-el.blade.php: -------------------------------------------------------------------------------- 1 | el: '#app-content', -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/user/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/views/user/nav.blade.php -------------------------------------------------------------------------------- /resources/views/user/site.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/UEditor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/server.php -------------------------------------------------------------------------------- /start_for_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/start_for_win.bat -------------------------------------------------------------------------------- /start_io.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/start_io.php -------------------------------------------------------------------------------- /start_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/start_web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/psysh -------------------------------------------------------------------------------- /vendor/bin/psysh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/bin/psysh.bat -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/dingo/api/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/.styleci.yml -------------------------------------------------------------------------------- /vendor/dingo/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/LICENSE -------------------------------------------------------------------------------- /vendor/dingo/api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/composer.json -------------------------------------------------------------------------------- /vendor/dingo/api/config/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/config/api.php -------------------------------------------------------------------------------- /vendor/dingo/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/readme.md -------------------------------------------------------------------------------- /vendor/dingo/api/src/Auth/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/src/Auth/Auth.php -------------------------------------------------------------------------------- /vendor/dingo/api/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/api/src/helpers.php -------------------------------------------------------------------------------- /vendor/dingo/blueprint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/dingo/blueprint/readme.md -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | build/ 3 | phpunit.xml 4 | composer.lock -------------------------------------------------------------------------------- /vendor/doctrine/cache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/cache/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/cache/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/cache/build.xml -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/gregwar/captcha/.gitignore -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/gregwar/captcha/.travis.yml -------------------------------------------------------------------------------- /vendor/gregwar/captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/gregwar/captcha/LICENSE -------------------------------------------------------------------------------- /vendor/gregwar/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/gregwar/captcha/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/.gitignore -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/.travis.yml -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/Makefile -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/hashids/hashids/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/hashids/hashids/LICENSE -------------------------------------------------------------------------------- /vendor/intervention/image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/intervention/image/LICENSE -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/laravel/framework/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/laravel/framework/readme.md -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/fractal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/league/fractal/LICENSE -------------------------------------------------------------------------------- /vendor/maximebf/debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/maximebf/debugbar/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: . 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/namshi/jose/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/.coveralls.yml -------------------------------------------------------------------------------- /vendor/namshi/jose/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | build/ 3 | -------------------------------------------------------------------------------- /vendor/namshi/jose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/.travis.yml -------------------------------------------------------------------------------- /vendor/namshi/jose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/LICENSE -------------------------------------------------------------------------------- /vendor/namshi/jose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/README.md -------------------------------------------------------------------------------- /vendor/namshi/jose/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/composer.json -------------------------------------------------------------------------------- /vendor/namshi/jose/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/namshi/jose/composer.lock -------------------------------------------------------------------------------- /vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nikic/php-parser/.gitignore -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/overtrue/pinyin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/pinyin/LICENSE -------------------------------------------------------------------------------- /vendor/overtrue/pinyin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/pinyin/README.md -------------------------------------------------------------------------------- /vendor/overtrue/socialite/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/socialite/.php_cs -------------------------------------------------------------------------------- /vendor/overtrue/wechat/BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/wechat/BACKERS.md -------------------------------------------------------------------------------- /vendor/overtrue/wechat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/wechat/LICENSE -------------------------------------------------------------------------------- /vendor/overtrue/wechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/overtrue/wechat/README.md -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Broadcast/README.md: -------------------------------------------------------------------------------- 1 | # broadcast 2 | 微信 SDK 群发模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Card/README.md: -------------------------------------------------------------------------------- 1 | # card 2 | 微信卡券 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Core/README.md: -------------------------------------------------------------------------------- 1 | # core 2 | 微信 SDK 核心部分 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Device/README.md: -------------------------------------------------------------------------------- 1 | # device 2 | 微信 SDK 设备管理模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Js/README.md: -------------------------------------------------------------------------------- 1 | # JS 2 | 微信 SDK JSSDK模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Material/README.md: -------------------------------------------------------------------------------- 1 | # material 2 | 微信 SDK 素材管理模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Menu/README.md: -------------------------------------------------------------------------------- 1 | # menu 2 | 微信 SDK 自定义菜单模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Notice/README.md: -------------------------------------------------------------------------------- 1 | # notice 2 | 微信 SDK 模板消息 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/POI/README.md: -------------------------------------------------------------------------------- 1 | # POI 2 | 微信 SDK 门店模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Payment/README.md: -------------------------------------------------------------------------------- 1 | # payment 2 | 微信支付 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/QRCode/README.md: -------------------------------------------------------------------------------- 1 | # qrcode 2 | 微信SDK 二维码模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Reply/README.md: -------------------------------------------------------------------------------- 1 | # Reply 2 | 微信 SDK 自动回复模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Semantic/README.md: -------------------------------------------------------------------------------- 1 | # semantic 2 | 微信SDK 语义理解模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Server/README.md: -------------------------------------------------------------------------------- 1 | # server 2 | 微信 SDK 服务器端模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Staff/README.md: -------------------------------------------------------------------------------- 1 | # staff 2 | 微信 SDK 客服模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Stats/README.md: -------------------------------------------------------------------------------- 1 | # stats 2 | 微信 SDK 数据统计模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Store/Model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Store/README.md: -------------------------------------------------------------------------------- 1 | # Store 2 | 微信 SDK 小店 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Support/README.md: -------------------------------------------------------------------------------- 1 | # support 2 | Tools for Wechat SDK. 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/Url/README.md: -------------------------------------------------------------------------------- 1 | # qrcode 2 | 微信SDK 二维码模块 3 | -------------------------------------------------------------------------------- /vendor/overtrue/wechat/src/User/README.md: -------------------------------------------------------------------------------- 1 | # user 2 | 微信 SDK 用户与用户组模块 3 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.phar 3 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpseclib/phpseclib/AUTHORS -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpseclib/phpseclib/LICENSE -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpspec/prophecy/CHANGES.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpspec/prophecy/LICENSE -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpspec/prophecy/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/php-timer/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/php-timer/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/.gitignore -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/.php_cs -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/.travis.yml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/README.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/phpunit.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://input')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/pimple/pimple/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/pimple/pimple/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/pimple/pimple/.travis.yml -------------------------------------------------------------------------------- /vendor/pimple/pimple/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/pimple/pimple/CHANGELOG -------------------------------------------------------------------------------- /vendor/pimple/pimple/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/pimple/pimple/LICENSE -------------------------------------------------------------------------------- /vendor/pimple/pimple/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/pimple/pimple/README.rst -------------------------------------------------------------------------------- /vendor/pimple/pimple/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/pimple/pimple/composer.json -------------------------------------------------------------------------------- /vendor/predis/predis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/predis/predis/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/FAQ.md -------------------------------------------------------------------------------- /vendor/predis/predis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/LICENSE -------------------------------------------------------------------------------- /vendor/predis/predis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/README.md -------------------------------------------------------------------------------- /vendor/predis/predis/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.1 2 | -------------------------------------------------------------------------------- /vendor/predis/predis/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/autoload.php -------------------------------------------------------------------------------- /vendor/predis/predis/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/composer.json -------------------------------------------------------------------------------- /vendor/predis/predis/package.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/predis/predis/package.ini -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/bin/build -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/bin/build-manual -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/bin/build-phar -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/bin/build-vendor -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/phpcs.xml -------------------------------------------------------------------------------- /vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/psy/psysh/src/Psy/Shell.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/debug/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/debug/composer.json -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/dom-crawler/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/finder/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/finder/Finder.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/finder/Glob.php -------------------------------------------------------------------------------- /vendor/symfony/finder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/finder/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/finder/README.md -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/other-file.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/http-kernel/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/process/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/process/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/process/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/process/Process.php -------------------------------------------------------------------------------- /vendor/symfony/process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/process/README.md -------------------------------------------------------------------------------- /vendor/symfony/psr-http-message-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/psr-http-message-bridge/CHANGELOG: -------------------------------------------------------------------------------- 1 | * 1.0.0 (2016-09-14) 2 | 3 | * Initial release 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/routing/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/routing/README.md -------------------------------------------------------------------------------- /vendor/symfony/routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/routing/Route.php -------------------------------------------------------------------------------- /vendor/symfony/routing/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/routing/Router.php -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/bar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/file_resource.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /vendor/symfony/translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/translation/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /vendor/tymon/jwt-auth/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | build 4 | -------------------------------------------------------------------------------- /vendor/tymon/jwt-auth/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/tymon/jwt-auth/.styleci.yml -------------------------------------------------------------------------------- /vendor/tymon/jwt-auth/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/tymon/jwt-auth/.travis.yml -------------------------------------------------------------------------------- /vendor/tymon/jwt-auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/tymon/jwt-auth/LICENSE -------------------------------------------------------------------------------- /vendor/tymon/jwt-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/tymon/jwt-auth/README.md -------------------------------------------------------------------------------- /vendor/vinkla/hashids/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/vinkla/hashids/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /vendor/workerman/channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/workerman/channel/README.md -------------------------------------------------------------------------------- /vendor/workerman/workerman.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/workerman/workerman.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/workerman/workerman.zip -------------------------------------------------------------------------------- /vendor/zizaco/entrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/zizaco/entrust/LICENSE -------------------------------------------------------------------------------- /vendor/zizaco/entrust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/zizaco/entrust/README.md -------------------------------------------------------------------------------- /vendor/zizaco/entrust/docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/zizaco/entrust/docs.php -------------------------------------------------------------------------------- /vendor/zizaco/entrust/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q1082121/laravelcms/HEAD/vendor/zizaco/entrust/phpunit.xml --------------------------------------------------------------------------------