├── .gitattributes ├── .gitignore ├── .htaccess ├── LICENSE ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── .htaccess ├── admin │ ├── common.php │ ├── config.php │ ├── controller │ │ ├── Api.php │ │ ├── Article.php │ │ ├── Authgroup.php │ │ ├── Authrule.php │ │ ├── Base.php │ │ ├── Category.php │ │ ├── Index.php │ │ ├── Login.php │ │ ├── Robot.php │ │ ├── Sysconf.php │ │ ├── Tag.php │ │ └── User.php │ ├── lang │ │ └── zh-cn.php │ ├── model │ │ ├── Article.php │ │ ├── ArticleTagAccess.php │ │ ├── AuthGroup.php │ │ ├── AuthGroupAccess.php │ │ ├── AuthRule.php │ │ ├── Category.php │ │ ├── FinndyData.php │ │ ├── StatRobot.php │ │ ├── SysConf.php │ │ ├── Tag.php │ │ ├── UserRobot.php │ │ └── Users.php │ ├── validate │ │ ├── Article.php │ │ ├── AuthRule.php │ │ ├── Robot.php │ │ └── User.php │ └── view │ │ ├── article │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ ├── auth │ │ ├── login.html │ │ └── register.html │ │ ├── authgroup │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ ├── authrule │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ ├── category │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ ├── index │ │ └── index.html │ │ ├── login │ │ ├── dologin.html │ │ ├── index.html │ │ └── register.html │ │ ├── public │ │ ├── left.html │ │ └── top.html │ │ ├── robot │ │ ├── add.html │ │ ├── debug.html │ │ ├── detail.html │ │ ├── import.html │ │ ├── index.html │ │ └── policy.html │ │ ├── sysconf │ │ ├── addmenu.html │ │ ├── addrole.html │ │ ├── index.html │ │ ├── menuset.html │ │ └── sysset.html │ │ ├── tag │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ └── user │ │ ├── add.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── profile.html │ │ └── resetpwd.html ├── command.php ├── common.php ├── common │ ├── config.php │ ├── controller │ │ └── Bbase.php │ └── tpl │ │ ├── 404.tpl │ │ └── dispatch_jump.tpl ├── config.php ├── extra │ └── queue.php ├── home │ ├── controller │ │ ├── Article.php │ │ ├── Base.php │ │ └── Index.php │ ├── model │ │ ├── Article.php │ │ └── Category.php │ └── view │ │ ├── article │ │ ├── detail.html │ │ └── index.html │ │ ├── index │ │ └── index.html │ │ ├── public │ │ ├── footer.html │ │ └── header.html │ │ └── upload.html ├── install │ ├── common.php │ ├── config.php │ ├── controller │ │ └── Index.php │ ├── data │ │ ├── database.tpl │ │ ├── install-bak.sql │ │ └── install.sql │ ├── validate │ │ └── InstallConfig.php │ └── view │ │ ├── index │ │ ├── check.html │ │ ├── complete.html │ │ ├── config.html │ │ ├── index.html │ │ └── sql.html │ │ └── public │ │ └── base.html ├── lang │ └── zh-cn.php ├── route.php └── tags.php ├── composer.json ├── data └── .gitignore ├── extend └── org │ ├── Auth.php │ └── Response.php ├── index.php ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt ├── router.php └── static │ ├── admin │ ├── css │ │ ├── ace-fonts.css │ │ ├── ace-ie.css │ │ ├── ace-part2.css │ │ ├── ace.css │ │ ├── ace.onpage-help.css │ │ ├── bootstrap.css │ │ ├── customize.css │ │ ├── demo.css │ │ ├── edit.css │ │ ├── font-awesome.css │ │ ├── jqgrid.css │ │ ├── jquery-ui.css │ │ ├── style.css │ │ ├── sunburst.css │ │ ├── ui.jqgrid.css │ │ ├── validform.css │ │ └── webuploader.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── OpenSans-300.woff │ │ ├── OpenSans-400.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── readme │ ├── image │ │ ├── finndy_logo.jpg │ │ ├── finndy_logo2.png │ │ ├── finndy_logo3.jpg │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── logowhite.png │ │ ├── profile-pic.jpg │ │ ├── tips_fail.png │ │ └── tips_ok.png │ └── js │ │ ├── Uploader.swf │ │ ├── Validform_v5.3.2.js │ │ ├── ace-elements.js │ │ ├── ace-extra.js │ │ ├── ace.ajax-content.js │ │ ├── ace.auto-container.js │ │ ├── ace.auto-padding.js │ │ ├── ace.js │ │ ├── ace.onpage-help.js │ │ ├── ace.searchbox-autocomplete.js │ │ ├── ace.settings-rtl.js │ │ ├── ace.settings-skin.js │ │ ├── ace.settings.js │ │ ├── ace.sidebar-scroll-1.js │ │ ├── ace.sidebar-scroll-2.js │ │ ├── ace.sidebar.js │ │ ├── ace.submenu-hover.js │ │ ├── ace.touch-drag.js │ │ ├── ace.widget-box.js │ │ ├── ace.widget-on-reload.js │ │ ├── admin.js │ │ ├── ajax.js │ │ ├── bootbox.js │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-multiselect.js │ │ ├── bootstrap-tag.js │ │ ├── bootstrap-wysiwyg.js │ │ ├── bootstrap.js │ │ ├── common.js │ │ ├── css.js │ │ ├── demo.js │ │ ├── echarts.common.min.js │ │ ├── edit.js │ │ ├── elements.aside.js │ │ ├── elements.colorpicker.js │ │ ├── elements.fileinput.js │ │ ├── elements.onpage-help.js │ │ ├── elements.scroller.js │ │ ├── elements.spinner.js │ │ ├── elements.treeview.js │ │ ├── elements.typeahead.js │ │ ├── elements.wizard.js │ │ ├── elements.wysiwyg.js │ │ ├── fuelux.spinner.js │ │ ├── fuelux.tree.js │ │ ├── generic.js │ │ ├── grid.locale-cn.js │ │ ├── grid.locale-en.js │ │ ├── html.js │ │ ├── html5shiv.js │ │ ├── infoajax.js │ │ ├── infomanage.js │ │ ├── javascript.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-ui.custom.js │ │ ├── jquery-ui.js │ │ ├── jquery.autosize.js │ │ ├── jquery.bootstrap-duallistbox.js │ │ ├── jquery.colorbox.js │ │ ├── jquery.easypiechart.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.gritter.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.inputlimiter.1.3.1.js │ │ ├── jquery.jqGrid.min.js │ │ ├── jquery.jqGrid.src.js │ │ ├── jquery.js │ │ ├── jquery.knob.js │ │ ├── jquery.maskedinput.js │ │ ├── jquery.mobile.custom.js │ │ ├── jquery.mousewheel.js │ │ ├── jquery.nestable.js │ │ ├── jquery.raty.js │ │ ├── jquery.slimscroll.js │ │ ├── jquery.sparkline.js │ │ ├── jquery.ui.touch-punch.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.zclip.min.js │ │ ├── jquery1x.js │ │ ├── messages_zh.js │ │ ├── php.js │ │ ├── plupload.full.min.js │ │ ├── rainbow.js │ │ ├── rainbow.min.js │ │ ├── readme │ │ ├── respond.js │ │ ├── scripts.json │ │ ├── selectdate.js │ │ └── tree.min.js │ ├── assets │ ├── avatars │ │ ├── avatar.png │ │ ├── avatar1.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── profile-pic.jpg │ │ └── user.jpg │ ├── css │ │ ├── ace-ie.min.css │ │ ├── ace-rtl.min.css │ │ ├── ace-skins.min.css │ │ ├── ace.min.css │ │ ├── base.css │ │ ├── bootstrap-editable.css │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap.min.css │ │ ├── chosen.css │ │ ├── colorbox.css │ │ ├── colorpicker.css │ │ ├── datepicker.css │ │ ├── daterangepicker.css │ │ ├── dropzone.css │ │ ├── font-awesome-ie7.min.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar.css │ │ ├── images │ │ │ └── loading.gif │ │ ├── jquery-ui-1.10.3.custom.min.css │ │ ├── jquery-ui-1.10.3.full.min.css │ │ ├── jquery.gritter.css │ │ ├── select2.css │ │ └── ui.jqgrid.css │ ├── font │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── gallery │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ ├── image-6.jpg │ │ │ ├── thumb-1.jpg │ │ │ ├── thumb-2.jpg │ │ │ ├── thumb-3.jpg │ │ │ ├── thumb-4.jpg │ │ │ ├── thumb-5.jpg │ │ │ └── thumb-6.jpg │ │ └── no.jpg │ ├── js │ │ ├── ace-elements.min.js │ │ ├── ace-extra.min.js │ │ ├── ace.min.js │ │ ├── additional-methods.min.js │ │ ├── bootbox.min.js │ │ ├── bootstrap-colorpicker.min.js │ │ ├── bootstrap-tag.min.js │ │ ├── bootstrap-wysiwyg.min.js │ │ ├── bootstrap.min.js │ │ ├── chosen.jquery.min.js │ │ ├── date-time │ │ │ ├── bootstrap-datepicker.min.js │ │ │ ├── bootstrap-timepicker.min.js │ │ │ ├── daterangepicker.min.js │ │ │ └── moment.min.js │ │ ├── dropzone.min.js │ │ ├── excanvas.min.js │ │ ├── flot │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ └── jquery.flot.resize.min.js │ │ ├── fuelux │ │ │ ├── data │ │ │ │ └── fuelux.tree-sampledata.js │ │ │ ├── fuelux.spinner.min.js │ │ │ ├── fuelux.tree.min.js │ │ │ └── fuelux.wizard.min.js │ │ ├── fullcalendar.min.js │ │ ├── html5shiv.js │ │ ├── jqGrid │ │ │ ├── i18n │ │ │ │ └── grid.locale-en.js │ │ │ └── jquery.jqGrid.min.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-2.0.3.min.js │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ ├── jquery-ui-1.10.3.full.min.js │ │ ├── jquery.autosize.min.js │ │ ├── jquery.colorbox-min.js │ │ ├── jquery.dataTables.bootstrap.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.easy-pie-chart.min.js │ │ ├── jquery.gritter.min.js │ │ ├── jquery.hotkeys.min.js │ │ ├── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery.knob.min.js │ │ ├── jquery.maskedinput.min.js │ │ ├── jquery.mobile.custom.min.js │ │ ├── jquery.nestable.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.sparkline.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── jquery.validate.min.js │ │ ├── markdown │ │ │ ├── bootstrap-markdown.min.js │ │ │ └── markdown.min.js │ │ ├── respond.min.js │ │ ├── select2.min.js │ │ ├── typeahead-bs2.min.js │ │ └── x-editable │ │ │ ├── ace-editable.min.js │ │ │ └── bootstrap-editable.min.js │ └── libs │ │ ├── layer │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── layer.js │ │ │ ├── mobile │ │ │ │ ├── layer.js │ │ │ │ └── need │ │ │ │ │ └── layer.css │ │ │ └── skin │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ └── moon │ │ │ │ ├── default.png │ │ │ │ └── style.css │ │ ├── gulpfile.js │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ ├── package.json │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ └── moon │ │ │ ├── default.png │ │ │ └── style.css │ │ ├── ueditor │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── php │ │ │ ├── Uploader.class.php │ │ │ ├── action_crawler.php │ │ │ ├── action_list.php │ │ │ ├── action_upload.php │ │ │ ├── config.json │ │ │ └── controller.php │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ ├── xss.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 │ │ └── webupload │ │ ├── Uploader.swf │ │ ├── demo.css │ │ ├── demo.js │ │ ├── global.js │ │ ├── h.js │ │ ├── style.css │ │ ├── syntax.css │ │ ├── webuploader.css │ │ ├── webuploader.js │ │ └── webuploader.support.js │ └── home │ ├── css │ ├── article.css │ ├── bootstrap.css │ ├── embed.css │ ├── jiathis_share.css │ ├── list.css │ ├── pagenavi-css.css │ ├── style.css │ ├── voteitup.css │ └── votestyles.css │ ├── image │ ├── arrow-1.png │ ├── arrow-2.png │ ├── dot-1.png │ ├── dot-2.png │ ├── focus-arrowl-over.png │ ├── focus-left-bg.png │ ├── footer_bg.jpg │ ├── hots_bg.png │ ├── like1.png │ ├── like2.png │ ├── links_bg.png │ ├── logo.png │ ├── ls2_post_info_eng.png │ ├── navi_a_hover_bg.png │ ├── noavatar_default.png │ ├── search-new.png │ ├── tg.jpg │ ├── weixin.jpg │ └── xh_area_title_h3.png │ └── js │ ├── bootstrap.js │ ├── common.js │ ├── dedeajax2.js │ ├── embed.js │ ├── jia.js │ ├── jquery-1.4.1.min.js │ ├── jquery-1.js │ ├── jquery.js │ ├── jquery_002.js │ ├── jquery_003.js │ ├── jtemplates.js │ ├── lazy.js │ ├── plugin.js │ ├── userregister.js │ ├── voterajax.js │ ├── wp-sns-share.js │ ├── z700bike_global.js │ └── z700bike_single.js ├── runtime └── .gitignore ├── think ├── thinkphp ├── .gitignore ├── .htaccess ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── base.php ├── codecov.yml ├── composer.json ├── console.php ├── convention.php ├── helper.php ├── lang │ └── zh-cn.php ├── library │ ├── think │ │ ├── App.php │ │ ├── Build.php │ │ ├── Cache.php │ │ ├── Collection.php │ │ ├── Config.php │ │ ├── Console.php │ │ ├── Controller.php │ │ ├── Cookie.php │ │ ├── Db.php │ │ ├── Debug.php │ │ ├── Env.php │ │ ├── Error.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── Hook.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Paginator.php │ │ ├── Process.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── Session.php │ │ ├── Template.php │ │ ├── Url.php │ │ ├── Validate.php │ │ ├── View.php │ │ ├── cache │ │ │ ├── Driver.php │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Lite.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Wincache.php │ │ │ │ └── Xcache.php │ │ ├── config │ │ │ └── driver │ │ │ │ ├── Ini.php │ │ │ │ ├── Json.php │ │ │ │ └── Xml.php │ │ ├── console │ │ │ ├── Command.php │ │ │ ├── Input.php │ │ │ ├── LICENSE │ │ │ ├── Output.php │ │ │ ├── bin │ │ │ │ ├── README.md │ │ │ │ └── hiddeninput.exe │ │ │ ├── command │ │ │ │ ├── Build.php │ │ │ │ ├── Clear.php │ │ │ │ ├── Help.php │ │ │ │ ├── Lists.php │ │ │ │ ├── Make.php │ │ │ │ ├── make │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── Model.php │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ └── model.stub │ │ │ │ └── optimize │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Route.php │ │ │ │ │ └── Schema.php │ │ │ ├── input │ │ │ │ ├── Argument.php │ │ │ │ ├── Definition.php │ │ │ │ └── Option.php │ │ │ └── output │ │ │ │ ├── Ask.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Question.php │ │ │ │ ├── descriptor │ │ │ │ └── Console.php │ │ │ │ ├── driver │ │ │ │ ├── Buffer.php │ │ │ │ ├── Console.php │ │ │ │ └── Nothing.php │ │ │ │ ├── formatter │ │ │ │ ├── Stack.php │ │ │ │ └── Style.php │ │ │ │ └── question │ │ │ │ ├── Choice.php │ │ │ │ └── Confirmation.php │ │ ├── controller │ │ │ ├── Rest.php │ │ │ └── Yar.php │ │ ├── db │ │ │ ├── Builder.php │ │ │ ├── Connection.php │ │ │ ├── Expression.php │ │ │ ├── Query.php │ │ │ ├── builder │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlsrv.php │ │ │ ├── connector │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Sqlsrv.php │ │ │ │ └── pgsql.sql │ │ │ └── exception │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ └── ModelNotFoundException.php │ │ ├── debug │ │ │ ├── Console.php │ │ │ └── Html.php │ │ ├── exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DbException.php │ │ │ ├── ErrorException.php │ │ │ ├── Handle.php │ │ │ ├── HttpException.php │ │ │ ├── HttpResponseException.php │ │ │ ├── PDOException.php │ │ │ ├── RouteNotFoundException.php │ │ │ ├── TemplateNotFoundException.php │ │ │ ├── ThrowableError.php │ │ │ └── ValidateException.php │ │ ├── log │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Socket.php │ │ │ │ └── Test.php │ │ ├── model │ │ │ ├── Collection.php │ │ │ ├── Merge.php │ │ │ ├── Pivot.php │ │ │ ├── Relation.php │ │ │ └── relation │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ └── OneToOne.php │ │ ├── paginator │ │ │ └── driver │ │ │ │ └── Bootstrap.php │ │ ├── process │ │ │ ├── Builder.php │ │ │ ├── Utils.php │ │ │ ├── exception │ │ │ │ ├── Failed.php │ │ │ │ └── Timeout.php │ │ │ └── pipes │ │ │ │ ├── Pipes.php │ │ │ │ ├── Unix.php │ │ │ │ └── Windows.php │ │ ├── response │ │ │ ├── Json.php │ │ │ ├── Jsonp.php │ │ │ ├── Redirect.php │ │ │ ├── View.php │ │ │ └── Xml.php │ │ ├── session │ │ │ └── driver │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Redis.php │ │ ├── template │ │ │ ├── TagLib.php │ │ │ ├── driver │ │ │ │ └── File.php │ │ │ └── taglib │ │ │ │ └── Cx.php │ │ └── view │ │ │ └── driver │ │ │ ├── Php.php │ │ │ └── Think.php │ └── traits │ │ ├── controller │ │ └── Jump.php │ │ ├── model │ │ └── SoftDelete.php │ │ └── think │ │ └── Instance.php ├── logo.png ├── phpunit.xml ├── start.php └── tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── vendor ├── aliyuncs └── oss-sdk-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README-CN.md │ ├── README.md │ ├── autoload.php │ ├── build-phar.sh │ ├── composer.json │ ├── example.jpg │ ├── index.php │ ├── phpunit.xml │ ├── samples │ ├── Bucket.php │ ├── BucketCors.php │ ├── BucketLifecycle.php │ ├── BucketLogging.php │ ├── BucketReferer.php │ ├── BucketWebsite.php │ ├── Callback.php │ ├── Common.php │ ├── Config.php │ ├── Image.php │ ├── LiveChannel.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── RunAll.php │ └── Signature.php │ ├── src │ └── OSS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── OssException.php │ │ └── OssUtil.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── CnameConfig.php │ │ ├── CorsConfig.php │ │ ├── CorsRule.php │ │ ├── GetLiveChannelHistory.php │ │ ├── GetLiveChannelInfo.php │ │ ├── GetLiveChannelStatus.php │ │ ├── LifecycleAction.php │ │ ├── LifecycleConfig.php │ │ ├── LifecycleRule.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── LiveChannelConfig.php │ │ ├── LiveChannelHistory.php │ │ ├── LiveChannelInfo.php │ │ ├── LiveChannelListInfo.php │ │ ├── LoggingConfig.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── PartInfo.php │ │ ├── PrefixInfo.php │ │ ├── RefererConfig.php │ │ ├── StorageCapacityConfig.php │ │ ├── UploadInfo.php │ │ ├── WebsiteConfig.php │ │ └── XmlConfig.php │ │ ├── OssClient.php │ │ └── Result │ │ ├── AclResult.php │ │ ├── AppendResult.php │ │ ├── BodyResult.php │ │ ├── CallbackResult.php │ │ ├── CopyObjectResult.php │ │ ├── DeleteObjectsResult.php │ │ ├── ExistResult.php │ │ ├── GetCnameResult.php │ │ ├── GetCorsResult.php │ │ ├── GetLifecycleResult.php │ │ ├── GetLiveChannelHistoryResult.php │ │ ├── GetLiveChannelInfoResult.php │ │ ├── GetLiveChannelStatusResult.php │ │ ├── GetLocationResult.php │ │ ├── GetLoggingResult.php │ │ ├── GetRefererResult.php │ │ ├── GetStorageCapacityResult.php │ │ ├── GetWebsiteResult.php │ │ ├── HeaderResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListLiveChannelResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListPartsResult.php │ │ ├── PutLiveChannelResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── SymlinkResult.php │ │ └── UploadPartResult.php │ └── tests │ └── OSS │ └── Tests │ ├── AclResultTest.php │ ├── BodyResultTest.php │ ├── BucketCnameTest.php │ ├── BucketInfoTest.php │ ├── BucketLiveChannelTest.php │ ├── CallbackTest.php │ ├── CnameConfigTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── CopyObjectResult.php │ ├── CorsConfigTest.php │ ├── ExistResultTest.php │ ├── GetCorsResultTest.php │ ├── GetLifecycleResultTest.php │ ├── GetLoggingResultTest.php │ ├── GetRefererResultTest.php │ ├── GetWebsiteResultTest.php │ ├── HeaderResultTest.php │ ├── HttpTest.php │ ├── InitiateMultipartUploadResultTest.php │ ├── LifecycleConfigTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListPartsResultTest.php │ ├── LiveChannelXmlTest.php │ ├── LoggingConfigTest.php │ ├── MimeTypesTest.php │ ├── ObjectAclTest.php │ ├── OssClientBucketCorsTest.php │ ├── OssClientBucketLifecycleTest.php │ ├── OssClientBucketLoggingTest.php │ ├── OssClientBucketRefererTest.php │ ├── OssClientBucketStorageCapacityTest.php │ ├── OssClientBucketTest.php │ ├── OssClientBucketWebsiteTest.php │ ├── OssClientImageTest.php │ ├── OssClientMultipartUploadTest.php │ ├── OssClientObjectTest.php │ ├── OssClientRestoreObjectTest.php │ ├── OssClientSignatureTest.php │ ├── OssClientTest.php │ ├── OssExceptionTest.php │ ├── OssUtilTest.php │ ├── PutSetDeleteResultTest.php │ ├── RefererConfigTest.php │ ├── StorageCapacityTest.php │ ├── SymlinkTest.php │ ├── TestOssClientBase.php │ ├── UploadPartResultTest.php │ └── WebsiteConfigTest.php ├── autoload.php ├── bin ├── phpunit └── phpunit.bat ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── doctrine └── instantiator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Doctrine │ └── Instantiator │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── UnexpectedValueException.php │ ├── Instantiator.php │ └── InstantiatorInterface.php ├── phpdocumentor ├── reflection-common │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── .coveralls.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── easy-coding-standard.neon │ └── 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 │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Float_.php │ ├── Integer.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phpspec └── prophecy │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── 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 │ │ └── TypeHintReference.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 │ ├── phpunit.xml │ ├── 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 │ │ ├── classUsesNamespacedFunction.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 │ ├── ForwardCompatibility │ │ ├── Assert.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestListener.php │ │ └── TestSuite.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-junit.phpt │ ├── log-tap.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 │ ├── StatusTest.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 ├── 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 │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── LCS │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ └── TimeEfficientImplementationTest.php │ │ ├── LineTest.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 ├── symfony ├── 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 ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tag │ └── TaggedValue.php │ ├── Tests │ ├── Command │ │ └── LintCommandTest.php │ ├── 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 │ │ ├── booleanMappingKeys.yml │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── legacyBooleanMappingKeys.yml │ │ ├── legacyNonStringKeys.yml │ │ ├── legacyNullMappingKey.yml │ │ ├── multiple_lines_as_literal_block.yml │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ ├── nonStringKeys.yml │ │ ├── not_readable.yml │ │ ├── nullMappingKey.yml │ │ ├── numericMappingKeys.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 ├── topthink ├── think-angular │ ├── .gitignore │ ├── README.md │ ├── composer.json │ ├── drivers │ │ └── thinkphp5 │ │ │ └── Angular.php │ ├── src │ │ └── Angular.php │ └── test │ │ ├── blog.php │ │ ├── cache │ │ ├── 126ac9f6149081eb0e97c2e939eaad52.php │ │ ├── 6a992d5529f459a44fee58c733255e86.php │ │ ├── 6e2baaf3b97dbeef01c0043275f9a0e7.php │ │ └── ed09636a6ea24a292460866afdd7a89a.php │ │ ├── common.php │ │ ├── data │ │ ├── blog_category.php │ │ ├── blog_list.php │ │ ├── navs.php │ │ ├── pic_category.php │ │ └── pic_list.php │ │ ├── index.php │ │ ├── msg.php │ │ ├── pic.php │ │ └── view │ │ ├── base.html │ │ ├── blog.html │ │ ├── index.html │ │ ├── msg.html │ │ ├── page.html │ │ └── pic.html ├── think-captcha │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── bgs │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ │ ├── ttfs │ │ │ ├── 1.ttf │ │ │ ├── 2.ttf │ │ │ ├── 3.ttf │ │ │ ├── 4.ttf │ │ │ ├── 5.ttf │ │ │ └── 6.ttf │ │ └── zhttfs │ │ │ └── 1.ttf │ ├── composer.json │ └── src │ │ ├── Captcha.php │ │ ├── CaptchaController.php │ │ └── helper.php ├── think-helper │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Arr.php │ │ ├── Hash.php │ │ ├── Str.php │ │ ├── Time.php │ │ ├── hash │ │ ├── Bcrypt.php │ │ └── Md5.php │ │ └── helper.php ├── think-image │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Image.php │ │ └── image │ │ │ ├── Exception.php │ │ │ └── gif │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ └── Gif.php │ └── tests │ │ ├── CropTest.php │ │ ├── FlipTest.php │ │ ├── InfoTest.php │ │ ├── RotateTest.php │ │ ├── TestCase.php │ │ ├── TextTest.php │ │ ├── ThumbTest.php │ │ ├── WaterTest.php │ │ ├── autoload.php │ │ ├── images │ │ ├── test.bmp │ │ ├── test.gif │ │ ├── test.jpg │ │ ├── test.png │ │ └── test.ttf │ │ └── tmp │ │ └── .gitignore ├── think-installer │ ├── .gitignore │ ├── composer.json │ └── src │ │ ├── Plugin.php │ │ ├── ThinkExtend.php │ │ ├── ThinkFramework.php │ │ └── ThinkTesting.php ├── think-migration │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phinx │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ └── Phinx │ │ │ ├── Db │ │ │ ├── Adapter │ │ │ │ ├── AdapterFactory.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── AdapterWrapper.php │ │ │ │ ├── MysqlAdapter.php │ │ │ │ ├── PdoAdapter.php │ │ │ │ ├── PostgresAdapter.php │ │ │ │ ├── ProxyAdapter.php │ │ │ │ ├── SQLiteAdapter.php │ │ │ │ ├── SqlServerAdapter.php │ │ │ │ ├── TablePrefixAdapter.php │ │ │ │ └── WrapperInterface.php │ │ │ ├── Table.php │ │ │ └── Table │ │ │ │ ├── Column.php │ │ │ │ ├── ForeignKey.php │ │ │ │ └── Index.php │ │ │ ├── Migration │ │ │ ├── AbstractMigration.php │ │ │ ├── AbstractTemplateCreation.php │ │ │ ├── CreationInterface.php │ │ │ ├── IrreversibleMigrationException.php │ │ │ ├── Migration.template.php.dist │ │ │ └── MigrationInterface.php │ │ │ ├── Seed │ │ │ ├── AbstractSeed.php │ │ │ ├── Seed.template.php.dist │ │ │ └── SeedInterface.php │ │ │ └── Util │ │ │ └── Util.php │ └── src │ │ ├── Command.php │ │ ├── Migrator.php │ │ ├── Seeder.php │ │ ├── command │ │ ├── Migrate.php │ │ ├── Seed.php │ │ ├── migrate │ │ │ ├── Breakpoint.php │ │ │ ├── Create.php │ │ │ ├── Rollback.php │ │ │ ├── Run.php │ │ │ └── Status.php │ │ ├── seed │ │ │ ├── Create.php │ │ │ └── Run.php │ │ └── stubs │ │ │ ├── migrate.stub │ │ │ └── seed.stub │ │ ├── config.php │ │ └── db │ │ ├── Column.php │ │ └── Table.php ├── think-mongo │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Builder.php │ │ ├── Connection.php │ │ └── Query.php ├── think-queue │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Queue.php │ │ ├── common.php │ │ ├── config.php │ │ └── queue │ │ ├── CallQueuedHandler.php │ │ ├── Connector.php │ │ ├── Job.php │ │ ├── Listener.php │ │ ├── Queueable.php │ │ ├── ShouldQueue.php │ │ ├── Worker.php │ │ ├── command │ │ ├── Listen.php │ │ ├── Restart.php │ │ ├── Subscribe.php │ │ └── Work.php │ │ ├── connector │ │ ├── Database.php │ │ ├── Redis.php │ │ ├── Sync.php │ │ └── Topthink.php │ │ └── job │ │ ├── Database.php │ │ ├── Redis.php │ │ ├── Sync.php │ │ └── Topthink.php └── think-testing │ ├── .gitignore │ ├── README.md │ ├── composer.json │ └── src │ ├── ApplicationTrait.php │ ├── AssertionsTrait.php │ ├── CrawlerTrait.php │ ├── HttpException.php │ ├── InteractsWithPages.php │ ├── TestCase.php │ ├── command │ └── Test.php │ └── config.php └── webmozart └── assert ├── .composer-auth.json ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src └── Assert.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | *.log -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.log 3 | database.php -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/admin/common.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/Printer.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/Regex.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/String.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/Test.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/Type.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/src/Util/XML.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Fail/fail.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/tests/Fail/fail.phpt -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/phpunit/phpunit/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/README.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/build/travis-ci.xml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/comparator/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/sebastian/comparator/src/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/src/Comparator.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/src/Factory.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/tests/autoload.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/comparator/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /vendor/sebastian/diff/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/.php_cs -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Differ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/src/Differ.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/src/Parser.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/ChunkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/ChunkTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/DiffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/DiffTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/DifferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/DifferTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/LineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/LineTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/fixtures/patch.txt -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/diff/tests/fixtures/patch2.txt -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/environment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/README.md -------------------------------------------------------------------------------- /vendor/sebastian/environment/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/environment/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/environment/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/environment/src/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/src/Console.php -------------------------------------------------------------------------------- /vendor/sebastian/environment/src/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/environment/src/Runtime.php -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/exporter/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/sebastian/exporter/src/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/exporter/src/Exporter.php -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/global-state/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/global-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/README.md -------------------------------------------------------------------------------- /vendor/sebastian/global-state/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/global-state/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/global-state/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/Blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/src/Blacklist.php -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/src/Exception.php -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/Restorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/src/Restorer.php -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/global-state/src/Snapshot.php -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/recursion-context/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/recursion-context/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/recursion-context/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/recursion-context/README.md -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/recursion-context/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/version/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/sebastian/version/src/Version.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/Crawler.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Field/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/Field/FormField.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/Form.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/Link.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/README.md -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Tests/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/Tests/FormTest.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/composer.json -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/dom-crawler/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Command/LintCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Command/LintCommand.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tag/TaggedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tag/TaggedValue.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/DumperTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/Fixtures/index.yml -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/InlineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/InlineTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Tests/YamlTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /vendor/symfony/yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/symfony/yaml/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/topthink/think-angular/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ -------------------------------------------------------------------------------- /vendor/topthink/think-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-angular/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-angular/test/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/test/blog.php -------------------------------------------------------------------------------- /vendor/topthink/think-angular/test/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/test/index.php -------------------------------------------------------------------------------- /vendor/topthink/think-angular/test/msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/test/msg.php -------------------------------------------------------------------------------- /vendor/topthink/think-angular/test/pic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-angular/test/pic.php -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | .idea -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-captcha/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-captcha/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-captcha/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/src/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-captcha/src/helper.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ -------------------------------------------------------------------------------- /vendor/topthink/think-helper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-helper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/src/Arr.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/src/Hash.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/src/Str.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/src/Time.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-helper/src/helper.php -------------------------------------------------------------------------------- /vendor/topthink/think-image/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /thinkphp/ 3 | /composer.lock 4 | /.idea/ -------------------------------------------------------------------------------- /vendor/topthink/think-image/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/.travis.yml -------------------------------------------------------------------------------- /vendor/topthink/think-image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-image/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-image/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/phpunit.xml -------------------------------------------------------------------------------- /vendor/topthink/think-image/src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-image/src/Image.php -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/images/test.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/topthink/think-installer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | composer.lock 3 | /vendor -------------------------------------------------------------------------------- /vendor/topthink/think-migration/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .idea 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/topthink/think-migration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-migration/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-migration/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-mongo/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-mongo/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-mongo/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-mongo/src/Builder.php -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-mongo/src/Query.php -------------------------------------------------------------------------------- /vendor/topthink/think-queue/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ 3 | /composer.lock 4 | /thinkphp/ 5 | -------------------------------------------------------------------------------- /vendor/topthink/think-queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-queue/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-queue/src/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/src/Queue.php -------------------------------------------------------------------------------- /vendor/topthink/think-queue/src/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/src/common.php -------------------------------------------------------------------------------- /vendor/topthink/think-queue/src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-queue/src/config.php -------------------------------------------------------------------------------- /vendor/topthink/think-testing/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-testing/README.md: -------------------------------------------------------------------------------- 1 | # think-testing 2 | ThinkPHP 5 应用单元测试组件 3 | -------------------------------------------------------------------------------- /vendor/topthink/think-testing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-testing/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-testing/src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/topthink/think-testing/src/config.php -------------------------------------------------------------------------------- /vendor/webmozart/assert/.composer-auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/.composer-auth.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/.styleci.yml -------------------------------------------------------------------------------- /vendor/webmozart/assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finndychain/finndychain-node/HEAD/vendor/webmozart/assert/src/Assert.php --------------------------------------------------------------------------------