├── .bowerrc ├── .gitignore ├── LICENSE.md ├── README.md ├── api_manager.sql ├── assets └── AppAsset.php ├── commands └── HelloController.php ├── composer.json ├── composer.lock ├── config ├── console.php ├── db.php ├── params.php └── web.php ├── controllers ├── ApiController.php └── SiteController.php ├── img ├── aaa.png ├── bbb.png ├── ccc.png ├── ddd.png └── eee.png ├── mail └── layouts │ └── html.php ├── models ├── Api.php ├── LoginForm.php ├── ModifyLogs.php ├── Project.php └── User.php ├── requirements.php ├── runtime └── .gitignore ├── tests ├── README.md ├── codeception.yml └── codeception │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ └── .gitignore │ ├── _pages │ ├── AboutPage.php │ ├── ContactPage.php │ └── LoginPage.php │ ├── acceptance.suite.yml │ ├── acceptance │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ └── _bootstrap.php │ ├── bin │ ├── _bootstrap.php │ ├── yii │ └── yii.bat │ ├── config │ ├── acceptance.php │ ├── config.php │ ├── functional.php │ └── unit.php │ ├── fixtures │ └── .gitignore │ ├── functional.suite.yml │ ├── functional │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ └── _bootstrap.php │ ├── templates │ └── .gitignore │ ├── unit.suite.yml │ └── unit │ ├── _bootstrap.php │ ├── fixtures │ ├── .gitkeep │ └── data │ │ └── .gitkeep │ ├── models │ ├── ContactFormTest.php │ ├── LoginFormTest.php │ └── UserTest.php │ └── templates │ └── fixtures │ └── .gitkeep ├── vendor ├── autoload.php ├── bin │ ├── markdown │ ├── markdown.bat │ ├── yii │ └── yii.bat ├── bower │ ├── bootstrap │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── package.js │ │ └── package.json │ ├── jquery.inputmask │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── bower.json │ │ └── dist │ │ │ ├── inputmask │ │ │ ├── inputmask.date.extensions.js │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ ├── inputmask.extensions.js │ │ │ ├── inputmask.js │ │ │ ├── inputmask.numeric.extensions.js │ │ │ ├── inputmask.phone.extensions.js │ │ │ ├── inputmask.regex.extensions.js │ │ │ └── jquery.inputmask.js │ │ │ ├── jquery.inputmask.bundle.js │ │ │ └── min │ │ │ ├── inputmask │ │ │ ├── inputmask.date.extensions.min.js │ │ │ ├── inputmask.dependencyLib.jquery.min.js │ │ │ ├── inputmask.extensions.min.js │ │ │ ├── inputmask.min.js │ │ │ ├── inputmask.numeric.extensions.min.js │ │ │ ├── inputmask.phone.extensions.min.js │ │ │ ├── inputmask.regex.extensions.min.js │ │ │ └── jquery.inputmask.min.js │ │ │ └── jquery.inputmask.bundle.min.js │ ├── jquery │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── punycode │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── punycode.js │ │ └── punycode.min.js │ ├── typeahead.js │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── bloodhound.js │ │ │ ├── bloodhound.min.js │ │ │ ├── typeahead.bundle.js │ │ │ ├── typeahead.bundle.min.js │ │ │ ├── typeahead.jquery.js │ │ │ └── typeahead.jquery.min.js │ │ ├── doc │ │ │ ├── bloodhound.md │ │ │ ├── jquery_typeahead.md │ │ │ └── migration │ │ │ │ └── 0.10.0.md │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── src │ │ │ ├── bloodhound │ │ │ │ ├── bloodhound.js │ │ │ │ ├── lru_cache.js │ │ │ │ ├── options_parser.js │ │ │ │ ├── persistent_storage.js │ │ │ │ ├── search_index.js │ │ │ │ ├── tokenizers.js │ │ │ │ ├── transport.js │ │ │ │ └── version.js │ │ │ ├── common │ │ │ │ └── utils.js │ │ │ └── typeahead │ │ │ │ ├── css.js │ │ │ │ ├── dataset.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── event_bus.js │ │ │ │ ├── event_emitter.js │ │ │ │ ├── highlight.js │ │ │ │ ├── html.js │ │ │ │ ├── input.js │ │ │ │ ├── plugin.js │ │ │ │ └── typeahead.js │ │ ├── test │ │ │ ├── bloodhound_spec.js │ │ │ ├── ci │ │ │ ├── dataset_view_spec.js │ │ │ ├── dropdown_view_spec.js │ │ │ ├── event_emitter_spec.js │ │ │ ├── fixtures │ │ │ │ ├── ajax_responses.js │ │ │ │ ├── data.js │ │ │ │ └── html.js │ │ │ ├── helpers │ │ │ │ └── typeahead_mocks.js │ │ │ ├── highlight_spec.js │ │ │ ├── input_view_spec.js │ │ │ ├── integration │ │ │ │ ├── test.html │ │ │ │ └── test.js │ │ │ ├── lru_cache_spec.js │ │ │ ├── persistent_storage_spec.js │ │ │ ├── playground.html │ │ │ ├── search_index_spec.js │ │ │ ├── tokenizers_spec.js │ │ │ ├── transport_spec.js │ │ │ └── typeahead_view_spec.js │ │ └── typeahead.js.jquery.json │ └── yii2-pjax │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ └── jquery.pjax.js ├── cebe │ └── markdown │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── GithubMarkdown.php │ │ ├── LICENSE │ │ ├── Markdown.php │ │ ├── MarkdownExtra.php │ │ ├── Parser.php │ │ ├── README.md │ │ ├── bin │ │ └── markdown │ │ ├── block │ │ ├── CodeTrait.php │ │ ├── FencedCodeTrait.php │ │ ├── HeadlineTrait.php │ │ ├── HtmlTrait.php │ │ ├── ListTrait.php │ │ ├── QuoteTrait.php │ │ ├── RuleTrait.php │ │ └── TableTrait.php │ │ ├── composer.json │ │ ├── inline │ │ ├── CodeTrait.php │ │ ├── EmphStrongTrait.php │ │ ├── LinkTrait.php │ │ ├── StrikeoutTrait.php │ │ └── UrlLinkTrait.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── BaseMarkdownTest.php │ │ ├── GithubMarkdownTest.php │ │ ├── MarkdownExtraTest.php │ │ ├── MarkdownOLStartNumTest.php │ │ ├── MarkdownTest.php │ │ ├── ParserTest.php │ │ ├── bootstrap.php │ │ ├── extra-data │ │ ├── fenced-code.html │ │ ├── fenced-code.md │ │ ├── special-attributes.html │ │ ├── special-attributes.md │ │ ├── tables.html │ │ ├── tables.md │ │ ├── test_precedence.html │ │ └── test_precedence.md │ │ ├── github-data │ │ ├── del.html │ │ ├── del.md │ │ ├── dense-block-markers.html │ │ ├── dense-block-markers.md │ │ ├── dense-block-markers2.html │ │ ├── dense-block-markers2.md │ │ ├── github-basics.html │ │ ├── github-basics.md │ │ ├── github-code-in-numbered-list.html │ │ ├── github-code-in-numbered-list.md │ │ ├── github-sample.html │ │ ├── github-sample.md │ │ ├── issue-33.html │ │ ├── issue-33.md │ │ ├── issue-38.html │ │ ├── issue-38.md │ │ ├── lists.html │ │ ├── lists.md │ │ ├── non-tables.html │ │ ├── non-tables.md │ │ ├── tables.html │ │ ├── tables.md │ │ ├── test_precedence.html │ │ ├── test_precedence.md │ │ ├── url.html │ │ └── url.md │ │ ├── markdown-data │ │ ├── README │ │ ├── blockquote-nested.html │ │ ├── blockquote-nested.md │ │ ├── blockquote.html │ │ ├── blockquote.md │ │ ├── code.html │ │ ├── code.md │ │ ├── dense-block-markers.html │ │ ├── dense-block-markers.md │ │ ├── emphasis.html │ │ ├── emphasis.md │ │ ├── empty-line.html │ │ ├── empty-line.md │ │ ├── endless_loop_bug.html │ │ ├── endless_loop_bug.md │ │ ├── escape-in-link.html │ │ ├── escape-in-link.md │ │ ├── headline.html │ │ ├── headline.md │ │ ├── hr.html │ │ ├── hr.md │ │ ├── html-block.html │ │ ├── html-block.md │ │ ├── images.html │ │ ├── images.md │ │ ├── inline-html.html │ │ ├── inline-html.md │ │ ├── lazy-list.html │ │ ├── lazy-list.md │ │ ├── links.html │ │ ├── links.md │ │ ├── list-marker-in-paragraph.html │ │ ├── list-marker-in-paragraph.md │ │ ├── list.html │ │ ├── list.md │ │ ├── list_and_reference.html │ │ ├── list_and_reference.md │ │ ├── list_items_with_undefined_ref.html │ │ ├── list_items_with_undefined_ref.md │ │ ├── md1_amps_and_angle_encoding.html │ │ ├── md1_amps_and_angle_encoding.md │ │ ├── md1_auto_links.html │ │ ├── md1_auto_links.md │ │ ├── md1_backslash_escapes.html │ │ ├── md1_backslash_escapes.md │ │ ├── md1_blockquotes_with_code_blocks.html │ │ ├── md1_blockquotes_with_code_blocks.md │ │ ├── md1_horizontal_rules.html │ │ ├── md1_horizontal_rules.md │ │ ├── md1_inline_html_avanced.html │ │ ├── md1_inline_html_avanced.md │ │ ├── md1_inline_html_comments.html │ │ ├── md1_inline_html_comments.md │ │ ├── md1_inline_html_simple.html │ │ ├── md1_inline_html_simple.md │ │ ├── md1_links_inline_style.html │ │ ├── md1_links_inline_style.md │ │ ├── md1_links_reference_style.html │ │ ├── md1_links_reference_style.md │ │ ├── md1_literal_quotes_in_titles.html │ │ ├── md1_literal_quotes_in_titles.md │ │ ├── md1_markdown_documentation_basics.html │ │ ├── md1_markdown_documentation_basics.md │ │ ├── md1_nested_blockquotes.html │ │ ├── md1_nested_blockquotes.md │ │ ├── md1_ordered_and_unordered_lists.html │ │ ├── md1_ordered_and_unordered_lists.md │ │ ├── md1_strong_and_em_together.html │ │ ├── md1_strong_and_em_together.md │ │ ├── md1_tabs.html │ │ ├── md1_tabs.md │ │ ├── md1_tidyness.html │ │ ├── md1_tidyness.md │ │ ├── nested-lists.html │ │ ├── nested-lists.md │ │ ├── newline.html │ │ ├── newline.md │ │ ├── paragraph.html │ │ ├── paragraph.md │ │ ├── references.html │ │ ├── references.md │ │ ├── specs.html │ │ ├── specs.md │ │ ├── test_precedence.html │ │ ├── test_precedence.md │ │ ├── unicode.html │ │ ├── unicode.md │ │ ├── utf8-do-not-kill-characters.html │ │ └── utf8-do-not-kill-characters.md │ │ ├── markdown-ol-start-num-data │ │ ├── list.html │ │ ├── list.md │ │ ├── md1_ordered_and_unordered_lists.html │ │ └── md1_ordered_and_unordered_lists.md │ │ └── profile.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ └── installed.json ├── ezyang │ └── htmlpurifier │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CREDITS │ │ ├── Doxyfile │ │ ├── FOCUS │ │ ├── INSTALL │ │ ├── INSTALL.fr.utf8 │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── WHATSNEW │ │ ├── WYSIWYG │ │ ├── art │ │ ├── 1000passes.png │ │ ├── 100cases.png │ │ ├── favicon.ico │ │ ├── icon-16x16.png │ │ ├── icon-16x16.svg │ │ ├── icon-32x32.png │ │ ├── icon-32x32.svg │ │ ├── icon-64x64.png │ │ ├── logo-large.png │ │ ├── logo.png │ │ ├── logo.svg │ │ └── powered.png │ │ ├── benchmarks │ │ ├── .htaccess │ │ ├── ConfigSchema.php │ │ ├── Lexer.php │ │ ├── Trace.php │ │ └── samples │ │ │ └── Lexer │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ ├── 3.html │ │ │ ├── 4.html │ │ │ └── DISCLAIMER.txt │ │ ├── composer.json │ │ ├── configdoc │ │ ├── generate.php │ │ ├── styles │ │ │ ├── plain.css │ │ │ └── plain.xsl │ │ ├── types.xml │ │ └── usage.xml │ │ ├── docs │ │ ├── dev-advanced-api.html │ │ ├── dev-code-quality.txt │ │ ├── dev-config-bcbreaks.txt │ │ ├── dev-config-naming.txt │ │ ├── dev-config-schema.html │ │ ├── dev-flush.html │ │ ├── dev-includes.txt │ │ ├── dev-naming.html │ │ ├── dev-optimization.html │ │ ├── dev-progress.html │ │ ├── dtd │ │ │ └── xhtml1-transitional.dtd │ │ ├── enduser-customize.html │ │ ├── enduser-id.html │ │ ├── enduser-overview.txt │ │ ├── enduser-security.txt │ │ ├── enduser-slow.html │ │ ├── enduser-tidy.html │ │ ├── enduser-uri-filter.html │ │ ├── enduser-utf8.html │ │ ├── enduser-youtube.html │ │ ├── entities │ │ │ ├── xhtml-lat1.ent │ │ │ ├── xhtml-special.ent │ │ │ └── xhtml-symbol.ent │ │ ├── examples │ │ │ └── basic.php │ │ ├── fixquotes.htc │ │ ├── index.html │ │ ├── proposal-colors.html │ │ ├── proposal-config.txt │ │ ├── proposal-css-extraction.txt │ │ ├── proposal-errors.txt │ │ ├── proposal-filter-levels.txt │ │ ├── proposal-language.txt │ │ ├── proposal-new-directives.txt │ │ ├── proposal-plists.txt │ │ ├── ref-content-models.txt │ │ ├── ref-css-length.txt │ │ ├── ref-devnetwork.html │ │ ├── ref-html-modularization.txt │ │ ├── ref-proprietary-tags.txt │ │ ├── ref-whatwg.txt │ │ ├── specimens │ │ │ ├── LICENSE │ │ │ ├── html-align-to-css.html │ │ │ ├── img.png │ │ │ ├── jochem-blok-word.html │ │ │ └── windows-live-mail-desktop-beta.html │ │ └── style.css │ │ ├── extras │ │ ├── ConfigDoc │ │ │ └── HTMLXSLTProcessor.php │ │ ├── FSTools.php │ │ ├── FSTools │ │ │ └── File.php │ │ ├── HTMLPurifierExtras.auto.php │ │ ├── HTMLPurifierExtras.autoload.php │ │ ├── HTMLPurifierExtras.php │ │ └── README │ │ ├── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ │ ├── Arborize.php │ │ │ ├── AttrCollections.php │ │ │ ├── AttrDef.php │ │ │ ├── AttrDef │ │ │ ├── CSS.php │ │ │ ├── CSS │ │ │ │ ├── AlphaValue.php │ │ │ │ ├── Background.php │ │ │ │ ├── BackgroundPosition.php │ │ │ │ ├── Border.php │ │ │ │ ├── Color.php │ │ │ │ ├── Composite.php │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Font.php │ │ │ │ ├── FontFamily.php │ │ │ │ ├── Ident.php │ │ │ │ ├── ImportantDecorator.php │ │ │ │ ├── Length.php │ │ │ │ ├── ListStyle.php │ │ │ │ ├── Multiple.php │ │ │ │ ├── Number.php │ │ │ │ ├── Percentage.php │ │ │ │ ├── TextDecoration.php │ │ │ │ └── URI.php │ │ │ ├── Clone.php │ │ │ ├── Enum.php │ │ │ ├── HTML │ │ │ │ ├── Bool.php │ │ │ │ ├── Class.php │ │ │ │ ├── Color.php │ │ │ │ ├── FrameTarget.php │ │ │ │ ├── ID.php │ │ │ │ ├── Length.php │ │ │ │ ├── LinkTypes.php │ │ │ │ ├── MultiLength.php │ │ │ │ ├── Nmtokens.php │ │ │ │ └── Pixels.php │ │ │ ├── Integer.php │ │ │ ├── Lang.php │ │ │ ├── Switch.php │ │ │ ├── Text.php │ │ │ ├── URI.php │ │ │ └── URI │ │ │ │ ├── Email.php │ │ │ │ ├── Email │ │ │ │ └── SimpleCheck.php │ │ │ │ ├── Host.php │ │ │ │ ├── IPv4.php │ │ │ │ └── IPv6.php │ │ │ ├── AttrTransform.php │ │ │ ├── AttrTransform │ │ │ ├── Background.php │ │ │ ├── BdoDir.php │ │ │ ├── BgColor.php │ │ │ ├── BoolToCSS.php │ │ │ ├── Border.php │ │ │ ├── EnumToCSS.php │ │ │ ├── ImgRequired.php │ │ │ ├── ImgSpace.php │ │ │ ├── Input.php │ │ │ ├── Lang.php │ │ │ ├── Length.php │ │ │ ├── Name.php │ │ │ ├── NameSync.php │ │ │ ├── Nofollow.php │ │ │ ├── SafeEmbed.php │ │ │ ├── SafeObject.php │ │ │ ├── SafeParam.php │ │ │ ├── ScriptRequired.php │ │ │ ├── TargetBlank.php │ │ │ └── Textarea.php │ │ │ ├── AttrTypes.php │ │ │ ├── AttrValidator.php │ │ │ ├── Bootstrap.php │ │ │ ├── CSSDefinition.php │ │ │ ├── ChildDef.php │ │ │ ├── ChildDef │ │ │ ├── Chameleon.php │ │ │ ├── Custom.php │ │ │ ├── Empty.php │ │ │ ├── List.php │ │ │ ├── Optional.php │ │ │ ├── Required.php │ │ │ ├── StrictBlockquote.php │ │ │ └── Table.php │ │ │ ├── Config.php │ │ │ ├── ConfigSchema.php │ │ │ ├── ConfigSchema │ │ │ ├── Builder │ │ │ │ ├── ConfigSchema.php │ │ │ │ └── Xml.php │ │ │ ├── Exception.php │ │ │ ├── Interchange.php │ │ │ ├── Interchange │ │ │ │ ├── Directive.php │ │ │ │ └── Id.php │ │ │ ├── InterchangeBuilder.php │ │ │ ├── Validator.php │ │ │ ├── ValidatorAtom.php │ │ │ ├── schema.ser │ │ │ └── schema │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ ├── Core.DisableExcludes.txt │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ ├── Core.Encoding.txt │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ ├── HTML.Strict.txt │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── Output.FixInnerHTML.txt │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ ├── URI.Base.txt │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── URI.Host.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── URI.Munge.txt │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ │ └── info.ini │ │ │ ├── ContentSets.php │ │ │ ├── Context.php │ │ │ ├── Definition.php │ │ │ ├── DefinitionCache.php │ │ │ ├── DefinitionCache │ │ │ ├── Decorator.php │ │ │ ├── Decorator │ │ │ │ ├── Cleanup.php │ │ │ │ ├── Memory.php │ │ │ │ └── Template.php.in │ │ │ ├── Null.php │ │ │ ├── Serializer.php │ │ │ └── Serializer │ │ │ │ └── README │ │ │ ├── DefinitionCacheFactory.php │ │ │ ├── Doctype.php │ │ │ ├── DoctypeRegistry.php │ │ │ ├── ElementDef.php │ │ │ ├── Encoder.php │ │ │ ├── EntityLookup.php │ │ │ ├── EntityLookup │ │ │ └── entities.ser │ │ │ ├── EntityParser.php │ │ │ ├── ErrorCollector.php │ │ │ ├── ErrorStruct.php │ │ │ ├── Exception.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ ├── ExtractStyleBlocks.php │ │ │ └── YouTube.php │ │ │ ├── Generator.php │ │ │ ├── HTMLDefinition.php │ │ │ ├── HTMLModule.php │ │ │ ├── HTMLModule │ │ │ ├── Bdo.php │ │ │ ├── CommonAttributes.php │ │ │ ├── Edit.php │ │ │ ├── Forms.php │ │ │ ├── Hypertext.php │ │ │ ├── Iframe.php │ │ │ ├── Image.php │ │ │ ├── Legacy.php │ │ │ ├── List.php │ │ │ ├── Name.php │ │ │ ├── Nofollow.php │ │ │ ├── NonXMLCommonAttributes.php │ │ │ ├── Object.php │ │ │ ├── Presentation.php │ │ │ ├── Proprietary.php │ │ │ ├── Ruby.php │ │ │ ├── SafeEmbed.php │ │ │ ├── SafeObject.php │ │ │ ├── SafeScripting.php │ │ │ ├── Scripting.php │ │ │ ├── StyleAttribute.php │ │ │ ├── Tables.php │ │ │ ├── Target.php │ │ │ ├── TargetBlank.php │ │ │ ├── Text.php │ │ │ ├── Tidy.php │ │ │ ├── Tidy │ │ │ │ ├── Name.php │ │ │ │ ├── Proprietary.php │ │ │ │ ├── Strict.php │ │ │ │ ├── Transitional.php │ │ │ │ ├── XHTML.php │ │ │ │ └── XHTMLAndHTML4.php │ │ │ └── XMLCommonAttributes.php │ │ │ ├── HTMLModuleManager.php │ │ │ ├── IDAccumulator.php │ │ │ ├── Injector.php │ │ │ ├── Injector │ │ │ ├── AutoParagraph.php │ │ │ ├── DisplayLinkURI.php │ │ │ ├── Linkify.php │ │ │ ├── PurifierLinkify.php │ │ │ ├── RemoveEmpty.php │ │ │ ├── RemoveSpansWithoutAttributes.php │ │ │ └── SafeObject.php │ │ │ ├── Language.php │ │ │ ├── Language │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ │ ├── en-x-test.php │ │ │ │ ├── en-x-testmini.php │ │ │ │ └── en.php │ │ │ ├── LanguageFactory.php │ │ │ ├── Length.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ ├── DOMLex.php │ │ │ ├── DirectLex.php │ │ │ └── PH5P.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── Comment.php │ │ │ ├── Element.php │ │ │ └── Text.php │ │ │ ├── PercentEncoder.php │ │ │ ├── Printer.php │ │ │ ├── Printer │ │ │ ├── CSSDefinition.php │ │ │ ├── ConfigForm.css │ │ │ ├── ConfigForm.js │ │ │ ├── ConfigForm.php │ │ │ └── HTMLDefinition.php │ │ │ ├── PropertyList.php │ │ │ ├── PropertyListIterator.php │ │ │ ├── Queue.php │ │ │ ├── Strategy.php │ │ │ ├── Strategy │ │ │ ├── Composite.php │ │ │ ├── Core.php │ │ │ ├── FixNesting.php │ │ │ ├── MakeWellFormed.php │ │ │ ├── RemoveForeignElements.php │ │ │ └── ValidateAttributes.php │ │ │ ├── StringHash.php │ │ │ ├── StringHashParser.php │ │ │ ├── TagTransform.php │ │ │ ├── TagTransform │ │ │ ├── Font.php │ │ │ └── Simple.php │ │ │ ├── Token.php │ │ │ ├── Token │ │ │ ├── Comment.php │ │ │ ├── Empty.php │ │ │ ├── End.php │ │ │ ├── Start.php │ │ │ ├── Tag.php │ │ │ └── Text.php │ │ │ ├── TokenFactory.php │ │ │ ├── URI.php │ │ │ ├── URIDefinition.php │ │ │ ├── URIFilter.php │ │ │ ├── URIFilter │ │ │ ├── DisableExternal.php │ │ │ ├── DisableExternalResources.php │ │ │ ├── DisableResources.php │ │ │ ├── HostBlacklist.php │ │ │ ├── MakeAbsolute.php │ │ │ ├── Munge.php │ │ │ └── SafeIframe.php │ │ │ ├── URIParser.php │ │ │ ├── URIScheme.php │ │ │ ├── URIScheme │ │ │ ├── data.php │ │ │ ├── file.php │ │ │ ├── ftp.php │ │ │ ├── http.php │ │ │ ├── https.php │ │ │ ├── mailto.php │ │ │ ├── news.php │ │ │ └── nntp.php │ │ │ ├── URISchemeRegistry.php │ │ │ ├── UnitConverter.php │ │ │ ├── VarParser.php │ │ │ ├── VarParser │ │ │ ├── Flexible.php │ │ │ └── Native.php │ │ │ ├── VarParserException.php │ │ │ └── Zipper.php │ │ ├── maintenance │ │ ├── .htaccess │ │ ├── PH5P.patch │ │ ├── PH5P.php │ │ ├── add-vimline.php │ │ ├── common.php │ │ ├── compile-doxygen.sh │ │ ├── config-scanner.php │ │ ├── flush-definition-cache.php │ │ ├── flush.php │ │ ├── generate-entity-file.php │ │ ├── generate-includes.php │ │ ├── generate-ph5p-patch.php │ │ ├── generate-schema-cache.php │ │ ├── generate-standalone.php │ │ ├── merge-library.php │ │ ├── old-extract-schema.php │ │ ├── old-remove-require-once.php │ │ ├── old-remove-schema-def.php │ │ ├── regenerate-docs.sh │ │ ├── remove-trailing-whitespace.php │ │ ├── rename-config.php │ │ ├── update-config.php │ │ └── update-freshmeat.php │ │ ├── package.php │ │ ├── phpdoc.ini │ │ ├── plugins │ │ ├── modx.txt │ │ └── phorum │ │ │ ├── .gitignore │ │ │ ├── Changelog │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── config.default.php │ │ │ ├── htmlpurifier.php │ │ │ ├── htmlpurifier │ │ │ ├── LICENSE │ │ │ └── README │ │ │ ├── info.txt │ │ │ ├── init-config.php │ │ │ ├── migrate.bbcode.php │ │ │ ├── settings.php │ │ │ └── settings │ │ │ ├── form.php │ │ │ ├── migrate-sigs-form.php │ │ │ ├── migrate-sigs.php │ │ │ └── save.php │ │ ├── release1-update.php │ │ ├── release2-tag.php │ │ ├── smoketests │ │ ├── all.php │ │ ├── attrTransform.php │ │ ├── attrTransform.xml │ │ ├── basic.php │ │ ├── basic │ │ │ ├── allElements.css │ │ │ ├── allElements.html │ │ │ ├── legacy.css │ │ │ └── legacy.html │ │ ├── cacheConfig.php │ │ ├── common.php │ │ ├── configForm.php │ │ ├── dataScheme.php │ │ ├── extractStyleBlocks.php │ │ ├── img.png │ │ ├── innerHTML.html │ │ ├── innerHTML.js │ │ ├── preserveYouTube.php │ │ ├── printDefinition.php │ │ ├── test-schema │ │ │ ├── Directive.Allowed.txt │ │ │ ├── Directive.Deprecated.txt │ │ │ ├── Directive.txt │ │ │ ├── Type.bool.txt │ │ │ ├── Type.float.txt │ │ │ ├── Type.hash.txt │ │ │ ├── Type.int.txt │ │ │ ├── Type.istring.txt │ │ │ ├── Type.itext.txt │ │ │ ├── Type.list.txt │ │ │ ├── Type.lookup.txt │ │ │ ├── Type.mixed.txt │ │ │ ├── Type.nullbool.txt │ │ │ ├── Type.nullstring.txt │ │ │ ├── Type.string.txt │ │ │ ├── Type.text.txt │ │ │ ├── Type.txt │ │ │ └── info.ini │ │ ├── variableWidthAttack.php │ │ ├── xssAttacks.php │ │ └── xssAttacks.xml │ │ ├── test-settings.sample.php │ │ └── tests │ │ ├── CliTestCase.php │ │ ├── Debugger.php │ │ ├── FSTools │ │ ├── FileSystemHarness.php │ │ └── FileTest.php │ │ ├── HTMLPurifier │ │ ├── AttrCollectionsTest.php │ │ ├── AttrDef │ │ │ ├── CSS │ │ │ │ ├── AlphaValueTest.php │ │ │ │ ├── BackgroundPositionTest.php │ │ │ │ ├── BackgroundTest.php │ │ │ │ ├── BorderTest.php │ │ │ │ ├── ColorTest.php │ │ │ │ ├── CompositeTest.php │ │ │ │ ├── FilterTest.php │ │ │ │ ├── FontFamilyTest.php │ │ │ │ ├── FontTest.php │ │ │ │ ├── ImportantDecoratorTest.php │ │ │ │ ├── LengthTest.php │ │ │ │ ├── ListStyleTest.php │ │ │ │ ├── MultipleTest.php │ │ │ │ ├── NumberTest.php │ │ │ │ ├── PercentageTest.php │ │ │ │ ├── TextDecorationTest.php │ │ │ │ └── URITest.php │ │ │ ├── CSSTest.php │ │ │ ├── EnumTest.php │ │ │ ├── HTML │ │ │ │ ├── BoolTest.php │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ColorTest.php │ │ │ │ ├── FrameTargetTest.php │ │ │ │ ├── IDTest.php │ │ │ │ ├── LengthTest.php │ │ │ │ ├── LinkTypesTest.php │ │ │ │ ├── MultiLengthTest.php │ │ │ │ ├── NmtokensTest.php │ │ │ │ └── PixelsTest.php │ │ │ ├── IntegerTest.php │ │ │ ├── LangTest.php │ │ │ ├── SwitchTest.php │ │ │ ├── TextTest.php │ │ │ ├── URI │ │ │ │ ├── Email │ │ │ │ │ └── SimpleCheckTest.php │ │ │ │ ├── EmailHarness.php │ │ │ │ ├── HostTest.php │ │ │ │ ├── IPv4Test.php │ │ │ │ └── IPv6Test.php │ │ │ └── URITest.php │ │ ├── AttrDefHarness.php │ │ ├── AttrDefTest.php │ │ ├── AttrTransform │ │ │ ├── BackgroundTest.php │ │ │ ├── BdoDirTest.php │ │ │ ├── BgColorTest.php │ │ │ ├── BoolToCSSTest.php │ │ │ ├── BorderTest.php │ │ │ ├── EnumToCSSTest.php │ │ │ ├── ImgRequiredTest.php │ │ │ ├── ImgSpaceTest.php │ │ │ ├── InputTest.php │ │ │ ├── LangTest.php │ │ │ ├── LengthTest.php │ │ │ ├── NameSyncTest.php │ │ │ └── NameTest.php │ │ ├── AttrTransformHarness.php │ │ ├── AttrTransformTest.php │ │ ├── AttrTypesTest.php │ │ ├── AttrValidator_ErrorsTest.php │ │ ├── ChildDef │ │ │ ├── ChameleonTest.php │ │ │ ├── CustomTest.php │ │ │ ├── ListTest.php │ │ │ ├── OptionalTest.php │ │ │ ├── RequiredTest.php │ │ │ ├── StrictBlockquoteTest.php │ │ │ └── TableTest.php │ │ ├── ChildDefHarness.php │ │ ├── ComplexHarness.php │ │ ├── ConfigSchema │ │ │ ├── InterchangeTest.php │ │ │ ├── Validator │ │ │ │ └── directive │ │ │ │ │ ├── aliasesAliasCollision.vtest │ │ │ │ │ ├── aliasesDirectiveCollision.vtest │ │ │ │ │ ├── allowedIsString.vtest │ │ │ │ │ ├── allowedNotEmpty.vtest │ │ │ │ │ ├── defaultIsAllowed.vtest │ │ │ │ │ ├── defaultNullWithAllowed.vtest │ │ │ │ │ ├── defaultType.vtest │ │ │ │ │ ├── descriptionNotEmpty.vtest │ │ │ │ │ ├── ignoreNamespace.vtest │ │ │ │ │ ├── typeDefined.vtest │ │ │ │ │ ├── typeExists.vtest │ │ │ │ │ ├── typeWithAllowedIsStringType.vtest │ │ │ │ │ ├── typeWithValueAliasesIsStringType.vtest │ │ │ │ │ ├── unique.vtest │ │ │ │ │ ├── valueAliasesAliasIsString.vtest │ │ │ │ │ ├── valueAliasesAliasNotAllowed.vtest │ │ │ │ │ ├── valueAliasesNotAliasSelf.vtest │ │ │ │ │ ├── valueAliasesRealAllowed.vtest │ │ │ │ │ └── valueAliasesRealIsString.vtest │ │ │ ├── ValidatorAtomTest.php │ │ │ ├── ValidatorTest.php │ │ │ └── ValidatorTestCase.php │ │ ├── ConfigSchemaTest.php │ │ ├── ConfigTest-create.ini │ │ ├── ConfigTest-finalize.ini │ │ ├── ConfigTest-loadIni.ini │ │ ├── ConfigTest.php │ │ ├── ContextTest.php │ │ ├── DefinitionCache │ │ │ ├── Decorator │ │ │ │ ├── CleanupTest.php │ │ │ │ └── MemoryTest.php │ │ │ ├── DecoratorHarness.php │ │ │ ├── DecoratorTest.php │ │ │ ├── SerializerTest.php │ │ │ └── SerializerTest │ │ │ │ └── README │ │ ├── DefinitionCacheFactoryTest.php │ │ ├── DefinitionCacheHarness.php │ │ ├── DefinitionCacheTest.php │ │ ├── DefinitionTest.php │ │ ├── DefinitionTestable.php │ │ ├── DoctypeRegistryTest.php │ │ ├── ElementDefTest.php │ │ ├── EncoderTest.php │ │ ├── EntityLookupTest.php │ │ ├── EntityParserTest.php │ │ ├── ErrorCollectorEMock.php │ │ ├── ErrorCollectorTest.php │ │ ├── ErrorsHarness.php │ │ ├── Filter │ │ │ └── ExtractStyleBlocksTest.php │ │ ├── GeneratorTest.php │ │ ├── HTMLDefinitionTest.php │ │ ├── HTMLModule │ │ │ ├── FormsTest.php │ │ │ ├── ImageTest.php │ │ │ ├── NameTest.php │ │ │ ├── NofollowTest.php │ │ │ ├── ObjectTest.php │ │ │ ├── ProprietaryTest.php │ │ │ ├── RubyTest.php │ │ │ ├── SafeEmbedTest.php │ │ │ ├── SafeObjectTest.php │ │ │ ├── SafeScriptingTest.php │ │ │ ├── ScriptingTest.php │ │ │ ├── TargetBlankTest.php │ │ │ └── TidyTest.php │ │ ├── HTMLModuleHarness.php │ │ ├── HTMLModuleManagerTest.php │ │ ├── HTMLModuleTest.php │ │ ├── HTMLT.php │ │ ├── HTMLT │ │ │ ├── allowed-preserve.htmlt │ │ │ ├── allowed-remove.htmlt │ │ │ ├── basic.htmlt │ │ │ ├── blacklist-preserve.htmlt │ │ │ ├── blacklist-remove.htmlt │ │ │ ├── css-allowed-preserve.htmlt │ │ │ ├── css-allowed-remove.htmlt │ │ │ ├── disable-uri.htmlt │ │ │ ├── double-youtube.htmlt │ │ │ ├── empty.htmlt │ │ │ ├── file-uri.htmlt │ │ │ ├── id-default.htmlt │ │ │ ├── id-enabled.htmlt │ │ │ ├── id-img.htmlt │ │ │ ├── id-name-mix.htmlt │ │ │ ├── inline-list-loop.htmlt │ │ │ ├── inline-wraps-block.htmlt │ │ │ ├── list-nesting.htmlt │ │ │ ├── munge-extra.htmlt │ │ │ ├── munge.htmlt │ │ │ ├── name.htmlt │ │ │ ├── safe-iframe-googlemaps.htmlt │ │ │ ├── safe-iframe-invalid.htmlt │ │ │ ├── safe-iframe-youtube.htmlt │ │ │ ├── safe-iframe.htmlt │ │ │ ├── safe-object-embed-munge.htmlt │ │ │ ├── safe-object-embed.htmlt │ │ │ ├── script-bare.htmlt │ │ │ ├── script-cdata.htmlt │ │ │ ├── script-comment.htmlt │ │ │ ├── script-dbl-comment.htmlt │ │ │ ├── script-ideal.htmlt │ │ │ ├── secure-munge.htmlt │ │ │ ├── shift-jis-preserve-yen.htmlt │ │ │ ├── shift-jis-remove-yen.htmlt │ │ │ ├── strict-blockquote-with-inline.htmlt │ │ │ ├── strict-blockquote.htmlt │ │ │ ├── strict-underline.htmlt │ │ │ ├── style-onload.htmlt │ │ │ ├── tidy-background.htmlt │ │ │ ├── trusted-comments-required.htmlt │ │ │ ├── trusted-comments-table.htmlt │ │ │ ├── trusted-comments.htmlt │ │ │ └── whitespace-preserve.htmlt │ │ ├── Harness.php │ │ ├── IDAccumulatorTest.php │ │ ├── Injector │ │ │ ├── AutoParagraphTest.php │ │ │ ├── DisplayLinkURITest.php │ │ │ ├── LinkifyTest.php │ │ │ ├── PurifierLinkifyTest.php │ │ │ ├── RemoveEmptyTest.php │ │ │ ├── RemoveSpansWithoutAttributesTest.php │ │ │ └── SafeObjectTest.php │ │ ├── InjectorHarness.php │ │ ├── LanguageFactoryTest.php │ │ ├── LanguageTest.php │ │ ├── LengthTest.php │ │ ├── Lexer │ │ │ ├── DirectLexTest.php │ │ │ └── DirectLex_ErrorsTest.php │ │ ├── LexerTest.php │ │ ├── PHPT │ │ │ ├── .gitignore │ │ │ ├── domxml.phpt │ │ │ ├── func.phpt │ │ │ ├── kses │ │ │ │ └── basic.phpt │ │ │ ├── loading │ │ │ │ ├── _autoload.inc │ │ │ │ ├── _no-autoload.inc │ │ │ │ ├── auto-includes.phpt │ │ │ │ ├── auto-with-autoload.phpt │ │ │ │ ├── auto-with-spl-autoload-default.phpt │ │ │ │ ├── auto-with-spl-autoload.phpt │ │ │ │ ├── auto-without-spl-autoload.phpt │ │ │ │ ├── auto-without-spl-with-autoload.phpt │ │ │ │ ├── auto.phpt │ │ │ │ ├── error-auto-with-spl-nonstatic-autoload.phpt │ │ │ │ ├── path-includes-autoload.phpt │ │ │ │ ├── path-includes.phpt │ │ │ │ ├── safe-includes.phpt │ │ │ │ ├── standalone-autoload.phpt │ │ │ │ ├── standalone-with-prefix.phpt │ │ │ │ └── standalone.phpt │ │ │ ├── stub.phpt │ │ │ ├── utf8.phpt │ │ │ └── ze1_compatibility_mode.phpt │ │ ├── PercentEncoderTest.php │ │ ├── PropertyListTest.php │ │ ├── SimpleTest │ │ │ ├── Reporter.php │ │ │ └── TextReporter.php │ │ ├── Strategy │ │ │ ├── CompositeTest.php │ │ │ ├── CoreTest.php │ │ │ ├── ErrorsHarness.php │ │ │ ├── FixNestingTest.php │ │ │ ├── FixNesting_ErrorsTest.php │ │ │ ├── MakeWellFormed │ │ │ │ ├── EndInsertInjector.php │ │ │ │ ├── EndInsertInjectorTest.php │ │ │ │ ├── EndRewindInjector.php │ │ │ │ ├── EndRewindInjectorTest.php │ │ │ │ ├── SkipInjector.php │ │ │ │ └── SkipInjectorTest.php │ │ │ ├── MakeWellFormedTest.php │ │ │ ├── MakeWellFormed_ErrorsTest.php │ │ │ ├── MakeWellFormed_InjectorTest.php │ │ │ ├── RemoveForeignElementsTest.php │ │ │ ├── RemoveForeignElements_ErrorsTest.php │ │ │ ├── RemoveForeignElements_TidyTest.php │ │ │ ├── ValidateAttributesTest.php │ │ │ ├── ValidateAttributes_IDTest.php │ │ │ └── ValidateAttributes_TidyTest.php │ │ ├── StrategyHarness.php │ │ ├── StringHashParser │ │ │ ├── AppendMultiline.txt │ │ │ ├── Default.txt │ │ │ ├── Multi.txt │ │ │ ├── OverrideSingle.txt │ │ │ └── Simple.txt │ │ ├── StringHashParserTest.php │ │ ├── StringHashTest.php │ │ ├── TagTransformTest.php │ │ ├── TokenFactoryTest.php │ │ ├── TokenTest.php │ │ ├── URIDefinitionTest.php │ │ ├── URIFilter │ │ │ ├── DisableExternalResourcesTest.php │ │ │ ├── DisableExternalTest.php │ │ │ ├── DisableResourcesTest.php │ │ │ ├── HostBlacklistTest.php │ │ │ ├── MakeAbsoluteTest.php │ │ │ └── MungeTest.php │ │ ├── URIFilterHarness.php │ │ ├── URIHarness.php │ │ ├── URIParserTest.php │ │ ├── URISchemeRegistryTest.php │ │ ├── URISchemeTest.php │ │ ├── URITest.php │ │ ├── UnitConverterTest.php │ │ ├── VarParser │ │ │ ├── FlexibleTest.php │ │ │ └── NativeTest.php │ │ ├── VarParserHarness.php │ │ └── ZipperTest.php │ │ ├── HTMLPurifierTest.php │ │ ├── PHPT │ │ ├── Controller │ │ │ └── SimpleTest.php │ │ ├── Reporter │ │ │ └── SimpleTest.php │ │ └── Section │ │ │ └── PRESKIPIF.php │ │ ├── common.php │ │ ├── default_load.php │ │ ├── generate_mock_once.func.php │ │ ├── index.php │ │ ├── multitest.php │ │ ├── path2class.func.php │ │ ├── test_files.php │ │ └── tmp │ │ └── README ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ ├── src │ │ ├── Faker │ │ │ ├── Calculator │ │ │ │ └── Luhn.php │ │ │ ├── DefaultGenerator.php │ │ │ ├── Documentor.php │ │ │ ├── Factory.php │ │ │ ├── Generator.php │ │ │ ├── Guesser │ │ │ │ └── Name.php │ │ │ ├── ORM │ │ │ │ ├── CakePHP │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ ├── Doctrine │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ ├── Mandango │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ └── Propel │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ ├── Provider │ │ │ │ ├── Address.php │ │ │ │ ├── Barcode.php │ │ │ │ ├── Base.php │ │ │ │ ├── Biased.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── File.php │ │ │ │ ├── Image.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Lorem.php │ │ │ │ ├── Miscellaneous.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ ├── Text.php │ │ │ │ ├── UserAgent.php │ │ │ │ ├── Uuid.php │ │ │ │ ├── ar_JO │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── at_AT │ │ │ │ │ └── Payment.php │ │ │ │ ├── be_BE │ │ │ │ │ └── Payment.php │ │ │ │ ├── bg_BG │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── bn_BD │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Utils.php │ │ │ │ ├── cs_CZ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── da_DK │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── de_AT │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── de_DE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── el_GR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_AU │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_CA │ │ │ │ │ ├── Address.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_GB │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_NZ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_PH │ │ │ │ │ └── Address.php │ │ │ │ ├── en_UG │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_US │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── en_ZA │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_AR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_ES │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_PE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_VE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fa_IR │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── fi_FI │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_BE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_CA │ │ │ │ │ ├── Address.php │ │ │ │ │ └── Person.php │ │ │ │ ├── fr_FR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── hu_HU │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── hy_AM │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── id_ID │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── is_IS │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── it_IT │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ja_JP │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ka_GE │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── kk_KZ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ko_KR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── lv_LV │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── me_ME │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ne_NP │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── nl_BE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── nl_NL │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── no_NO │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── pl_PL │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── pt_BR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── check_digit.php │ │ │ │ ├── pt_PT │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ro_MD │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ro_RO │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ru_RU │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── sk_SK │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── sl_SI │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── sr_Cyrl_RS │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sr_Latn_RS │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sr_RS │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sv_SE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── tr_TR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── uk_UA │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── vi_VN │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── zh_CN │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ └── zh_TW │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ └── UniqueGenerator.php │ │ └── autoload.php │ │ └── test │ │ ├── Faker │ │ ├── Calculator │ │ │ └── LuhnTest.php │ │ ├── DefaultGeneratorTest.php │ │ ├── GeneratorTest.php │ │ └── Provider │ │ │ ├── AddressTest.php │ │ │ ├── BarcodeTest.php │ │ │ ├── BaseTest.php │ │ │ ├── BiasedTest.php │ │ │ ├── ColorTest.php │ │ │ ├── DateTimeTest.php │ │ │ ├── ImageTest.php │ │ │ ├── InternetTest.php │ │ │ ├── LocalizationTest.php │ │ │ ├── LoremTest.php │ │ │ ├── MiscellaneousTest.php │ │ │ ├── PaymentTest.php │ │ │ ├── PersonTest.php │ │ │ ├── ProviderOverrideTest.php │ │ │ ├── TextTest.php │ │ │ ├── UserAgentTest.php │ │ │ ├── UuidTest.php │ │ │ ├── at_AT │ │ │ └── PaymentTest.php │ │ │ ├── be_BE │ │ │ └── PaymentTest.php │ │ │ ├── bg_BG │ │ │ └── PaymentTest.php │ │ │ ├── de_AT │ │ │ ├── InternetTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── fr_FR │ │ │ └── CompanyTest.php │ │ │ ├── id_ID │ │ │ └── PersonTest.php │ │ │ ├── ja_JP │ │ │ └── PersonTest.php │ │ │ ├── pt_BR │ │ │ ├── CompanyTest.php │ │ │ └── PersonTest.php │ │ │ ├── pt_PT │ │ │ ├── AddressTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── ro_RO │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── sv_SE │ │ │ └── PersonTest.php │ │ │ └── uk_UA │ │ │ ├── AddressTest.php │ │ │ └── PhoneNumberTest.php │ │ ├── documentor.php │ │ └── test.php ├── phpspec │ └── php-diff │ │ ├── README │ │ ├── composer.json │ │ ├── example │ │ ├── a.txt │ │ ├── b.txt │ │ ├── example.php │ │ └── styles.css │ │ └── lib │ │ ├── Diff.php │ │ └── Diff │ │ ├── Renderer │ │ ├── Abstract.php │ │ ├── Html │ │ │ ├── Array.php │ │ │ ├── Inline.php │ │ │ └── SideBySide.php │ │ └── Text │ │ │ ├── Context.php │ │ │ └── Unified.php │ │ └── SequenceMatcher.php ├── swiftmailer │ └── swiftmailer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── composer.json │ │ ├── doc │ │ ├── headers.rst │ │ ├── help-resources.rst │ │ ├── including-the-files.rst │ │ ├── index.rst │ │ ├── installing.rst │ │ ├── introduction.rst │ │ ├── japanese.rst │ │ ├── messages.rst │ │ ├── overview.rst │ │ ├── plugins.rst │ │ ├── sending.rst │ │ └── uml │ │ │ ├── Encoders.graffle │ │ │ ├── Mime.graffle │ │ │ └── Transports.graffle │ │ ├── lib │ │ ├── classes │ │ │ ├── Swift.php │ │ │ └── Swift │ │ │ │ ├── Attachment.php │ │ │ │ ├── ByteStream │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ ├── ArrayByteStream.php │ │ │ │ ├── FileByteStream.php │ │ │ │ └── TemporaryFileByteStream.php │ │ │ │ ├── CharacterReader.php │ │ │ │ ├── CharacterReader │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ ├── UsAsciiReader.php │ │ │ │ └── Utf8Reader.php │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ ├── CharacterStream.php │ │ │ │ ├── CharacterStream │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ └── NgCharacterStream.php │ │ │ │ ├── ConfigurableSpool.php │ │ │ │ ├── DependencyContainer.php │ │ │ │ ├── DependencyException.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64Encoder.php │ │ │ │ ├── QpEncoder.php │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── Events │ │ │ │ ├── CommandEvent.php │ │ │ │ ├── CommandListener.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── EventListener.php │ │ │ │ ├── EventObject.php │ │ │ │ ├── ResponseEvent.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── SendEvent.php │ │ │ │ ├── SendListener.php │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ ├── TransportChangeListener.php │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ └── TransportExceptionListener.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── FileSpool.php │ │ │ │ ├── FileStream.php │ │ │ │ ├── Filterable.php │ │ │ │ ├── Image.php │ │ │ │ ├── InputByteStream.php │ │ │ │ ├── IoException.php │ │ │ │ ├── KeyCache.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ ├── DiskKeyCache.php │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ ├── NullKeyCache.php │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Mailer │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ └── RecipientIterator.php │ │ │ │ ├── MemorySpool.php │ │ │ │ ├── Message.php │ │ │ │ ├── Mime │ │ │ │ ├── Attachment.php │ │ │ │ ├── CharsetObserver.php │ │ │ │ ├── ContentEncoder.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── EncodingObserver.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeaderEncoder.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ ├── HeaderFactory.php │ │ │ │ ├── HeaderSet.php │ │ │ │ ├── Headers │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ ├── Message.php │ │ │ │ ├── MimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── OutputByteStream.php │ │ │ │ ├── Plugins │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ ├── Decorator │ │ │ │ │ └── Replacements.php │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ ├── ImpersonatePlugin.php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerPlugin.php │ │ │ │ ├── Loggers │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ └── EchoLogger.php │ │ │ │ ├── MessageLogger.php │ │ │ │ ├── Pop │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ └── Pop3Exception.php │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ ├── RedirectingPlugin.php │ │ │ │ ├── Reporter.php │ │ │ │ ├── ReporterPlugin.php │ │ │ │ ├── Reporters │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ └── HtmlReporter.php │ │ │ │ ├── Sleeper.php │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ └── Timer.php │ │ │ │ ├── Preferences.php │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ ├── RfcComplianceException.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SignedMessage.php │ │ │ │ ├── Signer.php │ │ │ │ ├── Signers │ │ │ │ ├── BodySigner.php │ │ │ │ ├── DKIMSigner.php │ │ │ │ ├── DomainKeySigner.php │ │ │ │ ├── HeaderSigner.php │ │ │ │ ├── OpenDKIMSigner.php │ │ │ │ └── SMimeSigner.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ ├── Spool.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ ├── StreamFilter.php │ │ │ │ ├── StreamFilters │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ ├── SwiftException.php │ │ │ │ ├── Transport.php │ │ │ │ ├── Transport │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ ├── Esmtp │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ └── Authenticator.php │ │ │ │ ├── EsmtpHandler.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── IoBuffer.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailInvoker.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SimpleMailInvoker.php │ │ │ │ ├── SmtpAgent.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ └── StreamBuffer.php │ │ │ │ ├── TransportException.php │ │ │ │ └── Validate.php │ │ ├── dependency_maps │ │ │ ├── cache_deps.php │ │ │ ├── message_deps.php │ │ │ ├── mime_deps.php │ │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_init.php │ │ ├── swift_required.php │ │ ├── swift_required_pear.php │ │ └── swiftmailer_generate_mimes_config.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── IdenticalBinaryConstraint.php │ │ ├── StreamCollector.php │ │ ├── SwiftMailerSmokeTestCase.php │ │ ├── SwiftMailerTestCase.php │ │ ├── _samples │ │ ├── charsets │ │ │ ├── iso-2022-jp │ │ │ │ └── one.txt │ │ │ ├── iso-8859-1 │ │ │ │ └── one.txt │ │ │ └── utf-8 │ │ │ │ ├── one.txt │ │ │ │ ├── three.txt │ │ │ │ └── two.txt │ │ ├── dkim │ │ │ ├── dkim.test.priv │ │ │ └── dkim.test.pub │ │ ├── files │ │ │ ├── data.txt │ │ │ ├── swiftmailer.png │ │ │ └── textfile.zip │ │ └── smime │ │ │ ├── CA.srl │ │ │ ├── ca.crt │ │ │ ├── ca.key │ │ │ ├── create-cert.sh │ │ │ ├── encrypt.crt │ │ │ ├── encrypt.key │ │ │ ├── encrypt2.crt │ │ │ ├── encrypt2.key │ │ │ ├── intermediate.crt │ │ │ ├── intermediate.key │ │ │ ├── sign.crt │ │ │ ├── sign.key │ │ │ ├── sign2.crt │ │ │ └── sign2.key │ │ ├── acceptance.conf.php.default │ │ ├── acceptance │ │ └── Swift │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ByteStream │ │ │ └── FileByteStreamAcceptanceTest.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ │ ├── DependencyContainerAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── Encoder │ │ │ ├── Base64EncoderAcceptanceTest.php │ │ │ ├── QpEncoderAcceptanceTest.php │ │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ │ ├── EncodingAcceptanceTest.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ │ └── DiskKeyCacheAcceptanceTest.php │ │ │ ├── MessageAcceptanceTest.php │ │ │ ├── Mime │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── HeaderEncoder │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── SimpleMessageAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── Transport │ │ │ └── StreamBuffer │ │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ │ ├── BasicSocketAcceptanceTest.php │ │ │ ├── ProcessAcceptanceTest.php │ │ │ ├── SocketTimeoutTest.php │ │ │ ├── SslSocketAcceptanceTest.php │ │ │ └── TlsSocketAcceptanceTest.php │ │ ├── bootstrap.php │ │ ├── bug │ │ └── Swift │ │ │ ├── Bug111Test.php │ │ │ ├── Bug118Test.php │ │ │ ├── Bug206Test.php │ │ │ ├── Bug274Test.php │ │ │ ├── Bug34Test.php │ │ │ ├── Bug35Test.php │ │ │ ├── Bug38Test.php │ │ │ ├── Bug518Test.php │ │ │ ├── Bug51Test.php │ │ │ ├── Bug534Test.php │ │ │ ├── Bug71Test.php │ │ │ └── Bug76Test.php │ │ ├── fixtures │ │ ├── EsmtpTransportFixture.php │ │ └── MimeEntityFixture.php │ │ ├── smoke.conf.php.default │ │ ├── smoke │ │ └── Swift │ │ │ └── Smoke │ │ │ ├── AttachmentSmokeTest.php │ │ │ ├── BasicSmokeTest.php │ │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ │ └── InternationalSmokeTest.php │ │ └── unit │ │ └── Swift │ │ ├── ByteStream │ │ └── ArrayByteStreamTest.php │ │ ├── CharacterReader │ │ ├── GenericFixedWidthReaderTest.php │ │ ├── UsAsciiReaderTest.php │ │ └── Utf8ReaderTest.php │ │ ├── CharacterStream │ │ └── ArrayCharacterStreamTest.php │ │ ├── DependencyContainerTest.php │ │ ├── Encoder │ │ ├── Base64EncoderTest.php │ │ ├── QpEncoderTest.php │ │ └── Rfc2231EncoderTest.php │ │ ├── Events │ │ ├── CommandEventTest.php │ │ ├── EventObjectTest.php │ │ ├── ResponseEventTest.php │ │ ├── SendEventTest.php │ │ ├── SimpleEventDispatcherTest.php │ │ ├── TransportChangeEventTest.php │ │ └── TransportExceptionEventTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheTest.php │ │ └── SimpleKeyCacheInputStreamTest.php │ │ ├── Mailer │ │ └── ArrayRecipientIteratorTest.php │ │ ├── MailerTest.php │ │ ├── MessageTest.php │ │ ├── Mime │ │ ├── AbstractMimeEntityTest.php │ │ ├── AttachmentTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderTest.php │ │ │ ├── PlainContentEncoderTest.php │ │ │ └── QpContentEncoderTest.php │ │ ├── EmbeddedFileTest.php │ │ ├── HeaderEncoder │ │ │ ├── Base64HeaderEncoderTest.php │ │ │ └── QpHeaderEncoderTest.php │ │ ├── Headers │ │ │ ├── DateHeaderTest.php │ │ │ ├── IdentificationHeaderTest.php │ │ │ ├── MailboxHeaderTest.php │ │ │ ├── ParameterizedHeaderTest.php │ │ │ ├── PathHeaderTest.php │ │ │ └── UnstructuredHeaderTest.php │ │ ├── MimePartTest.php │ │ ├── SimpleHeaderFactoryTest.php │ │ ├── SimpleHeaderSetTest.php │ │ ├── SimpleMessageTest.php │ │ └── SimpleMimeEntityTest.php │ │ ├── Plugins │ │ ├── AntiFloodPluginTest.php │ │ ├── BandwidthMonitorPluginTest.php │ │ ├── DecoratorPluginTest.php │ │ ├── LoggerPluginTest.php │ │ ├── Loggers │ │ │ ├── ArrayLoggerTest.php │ │ │ └── EchoLoggerTest.php │ │ ├── PopBeforeSmtpPluginTest.php │ │ ├── RedirectingPluginTest.php │ │ ├── ReporterPluginTest.php │ │ ├── Reporters │ │ │ ├── HitReporterTest.php │ │ │ └── HtmlReporterTest.php │ │ └── ThrottlerPluginTest.php │ │ ├── Signers │ │ ├── DKIMSignerTest.php │ │ ├── OpenDKIMSignerTest.php │ │ └── SMimeSignerTest.php │ │ ├── StreamFilters │ │ ├── ByteArrayReplacementFilterTest.php │ │ ├── StringReplacementFilterFactoryTest.php │ │ └── StringReplacementFilterTest.php │ │ └── Transport │ │ ├── AbstractSmtpEventSupportTest.php │ │ ├── AbstractSmtpTest.php │ │ ├── Esmtp │ │ ├── Auth │ │ │ ├── CramMd5AuthenticatorTest.php │ │ │ ├── LoginAuthenticatorTest.php │ │ │ ├── NTLMAuthenticatorTest.php │ │ │ └── PlainAuthenticatorTest.php │ │ └── AuthHandlerTest.php │ │ ├── EsmtpTransport │ │ └── ExtensionSupportTest.php │ │ ├── EsmtpTransportTest.php │ │ ├── FailoverTransportTest.php │ │ ├── LoadBalancedTransportTest.php │ │ ├── MailTransportTest.php │ │ ├── SendmailTransportTest.php │ │ └── StreamBufferTest.php └── yiisoft │ ├── extensions.php │ ├── yii2-bootstrap │ ├── ActiveField.php │ ├── ActiveForm.php │ ├── Alert.php │ ├── BaseHtml.php │ ├── BootstrapAsset.php │ ├── BootstrapPluginAsset.php │ ├── BootstrapThemeAsset.php │ ├── Button.php │ ├── ButtonDropdown.php │ ├── ButtonGroup.php │ ├── CHANGELOG.md │ ├── Carousel.php │ ├── Collapse.php │ ├── Dropdown.php │ ├── Html.php │ ├── Makefile │ ├── Modal.php │ ├── Nav.php │ ├── NavBar.php │ ├── Progress.php │ ├── README.md │ ├── Tabs.php │ ├── Widget.php │ └── composer.json │ ├── yii2-codeception │ ├── BasePage.php │ ├── CHANGELOG.md │ ├── DbTestCase.php │ ├── LICENSE.md │ ├── README.md │ ├── TestCase.php │ └── composer.json │ ├── yii2-composer │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Installer.php │ ├── LICENSE.md │ ├── Plugin.php │ ├── README.md │ └── composer.json │ ├── yii2-debug │ ├── CHANGELOG.md │ ├── DebugAsset.php │ ├── LogTarget.php │ ├── Module.php │ ├── Panel.php │ ├── README.md │ ├── ToolbarAsset.php │ ├── actions │ │ └── db │ │ │ └── ExplainAction.php │ ├── assets │ │ ├── bg.png │ │ ├── main.css │ │ ├── toolbar.css │ │ └── toolbar.js │ ├── components │ │ └── search │ │ │ ├── Filter.php │ │ │ └── matchers │ │ │ ├── Base.php │ │ │ ├── GreaterThan.php │ │ │ ├── LowerThan.php │ │ │ ├── MatcherInterface.php │ │ │ └── SameAs.php │ ├── composer.json │ ├── controllers │ │ └── DefaultController.php │ ├── models │ │ └── search │ │ │ ├── Base.php │ │ │ ├── Db.php │ │ │ ├── Debug.php │ │ │ ├── Log.php │ │ │ ├── Mail.php │ │ │ └── Profile.php │ ├── panels │ │ ├── AssetPanel.php │ │ ├── ConfigPanel.php │ │ ├── DbPanel.php │ │ ├── LogPanel.php │ │ ├── MailPanel.php │ │ ├── ProfilingPanel.php │ │ └── RequestPanel.php │ └── views │ │ ├── default │ │ ├── index.php │ │ ├── panels │ │ │ ├── assets │ │ │ │ ├── detail.php │ │ │ │ └── summary.php │ │ │ ├── config │ │ │ │ ├── detail.php │ │ │ │ ├── summary.php │ │ │ │ └── table.php │ │ │ ├── db │ │ │ │ ├── detail.php │ │ │ │ └── summary.php │ │ │ ├── log │ │ │ │ ├── detail.php │ │ │ │ └── summary.php │ │ │ ├── mail │ │ │ │ ├── _item.php │ │ │ │ ├── detail.php │ │ │ │ └── summary.php │ │ │ ├── profile │ │ │ │ ├── detail.php │ │ │ │ └── summary.php │ │ │ └── request │ │ │ │ ├── detail.php │ │ │ │ ├── summary.php │ │ │ │ └── table.php │ │ ├── toolbar.php │ │ └── view.php │ │ └── layouts │ │ └── main.php │ ├── yii2-faker │ ├── CHANGELOG.md │ ├── FixtureController.php │ ├── LICENSE.md │ ├── README.md │ └── composer.json │ ├── yii2-gii │ ├── CHANGELOG.md │ ├── CodeFile.php │ ├── Generator.php │ ├── GiiAsset.php │ ├── Makefile │ ├── Module.php │ ├── README.md │ ├── TypeAheadAsset.php │ ├── assets │ │ ├── gii.js │ │ ├── logo.png │ │ └── main.css │ ├── components │ │ ├── ActiveField.php │ │ └── DiffRendererHtmlInline.php │ ├── composer.json │ ├── console │ │ ├── GenerateAction.php │ │ └── GenerateController.php │ ├── controllers │ │ └── DefaultController.php │ ├── generators │ │ ├── controller │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ │ ├── controller.php │ │ │ │ └── view.php │ │ │ └── form.php │ │ ├── crud │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ │ ├── controller.php │ │ │ │ ├── search.php │ │ │ │ └── views │ │ │ │ │ ├── _form.php │ │ │ │ │ ├── _search.php │ │ │ │ │ ├── create.php │ │ │ │ │ ├── index.php │ │ │ │ │ ├── update.php │ │ │ │ │ └── view.php │ │ │ └── form.php │ │ ├── extension │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ │ ├── AutoloadExample.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ └── form.php │ │ ├── form │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ │ ├── action.php │ │ │ │ └── form.php │ │ │ └── form.php │ │ ├── model │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ │ ├── model.php │ │ │ │ └── query.php │ │ │ └── form.php │ │ └── module │ │ │ ├── Generator.php │ │ │ ├── default │ │ │ ├── controller.php │ │ │ ├── module.php │ │ │ └── view.php │ │ │ └── form.php │ └── views │ │ ├── default │ │ ├── diff.php │ │ ├── index.php │ │ ├── view.php │ │ └── view │ │ │ ├── files.php │ │ │ └── results.php │ │ └── layouts │ │ ├── generator.php │ │ └── main.php │ ├── yii2-swiftmailer │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── Logger.php │ ├── Mailer.php │ ├── Makefile │ ├── Message.php │ ├── README.md │ └── composer.json │ └── yii2 │ ├── .gitignore │ ├── .htaccess │ ├── BaseYii.php │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── UPGRADE.md │ ├── Yii.php │ ├── assets │ ├── yii.activeForm.js │ ├── yii.captcha.js │ ├── yii.gridView.js │ ├── yii.js │ └── yii.validation.js │ ├── base │ ├── Action.php │ ├── ActionEvent.php │ ├── ActionFilter.php │ ├── Application.php │ ├── ArrayAccessTrait.php │ ├── Arrayable.php │ ├── ArrayableTrait.php │ ├── Behavior.php │ ├── BootstrapInterface.php │ ├── Component.php │ ├── Configurable.php │ ├── Controller.php │ ├── DynamicModel.php │ ├── ErrorException.php │ ├── ErrorHandler.php │ ├── Event.php │ ├── Exception.php │ ├── ExitException.php │ ├── InlineAction.php │ ├── InvalidCallException.php │ ├── InvalidConfigException.php │ ├── InvalidParamException.php │ ├── InvalidRouteException.php │ ├── InvalidValueException.php │ ├── Model.php │ ├── ModelEvent.php │ ├── Module.php │ ├── NotSupportedException.php │ ├── Object.php │ ├── Request.php │ ├── Response.php │ ├── Security.php │ ├── Theme.php │ ├── UnknownClassException.php │ ├── UnknownMethodException.php │ ├── UnknownPropertyException.php │ ├── UserException.php │ ├── View.php │ ├── ViewContextInterface.php │ ├── ViewEvent.php │ ├── ViewRenderer.php │ └── Widget.php │ ├── behaviors │ ├── AttributeBehavior.php │ ├── BlameableBehavior.php │ ├── SluggableBehavior.php │ └── TimestampBehavior.php │ ├── caching │ ├── ApcCache.php │ ├── ArrayCache.php │ ├── Cache.php │ ├── ChainedDependency.php │ ├── DbCache.php │ ├── DbDependency.php │ ├── Dependency.php │ ├── DummyCache.php │ ├── ExpressionDependency.php │ ├── FileCache.php │ ├── FileDependency.php │ ├── MemCache.php │ ├── MemCacheServer.php │ ├── TagDependency.php │ ├── WinCache.php │ ├── XCache.php │ ├── ZendDataCache.php │ └── migrations │ │ ├── m150909_153426_cache_init.php │ │ ├── schema-mssql.sql │ │ ├── schema-mysql.sql │ │ ├── schema-oci.sql │ │ ├── schema-pgsql.sql │ │ └── schema-sqlite.sql │ ├── captcha │ ├── Captcha.php │ ├── CaptchaAction.php │ ├── CaptchaAsset.php │ ├── CaptchaValidator.php │ ├── SpicyRice.md │ └── SpicyRice.ttf │ ├── classes.php │ ├── composer.json │ ├── console │ ├── Application.php │ ├── Controller.php │ ├── ErrorHandler.php │ ├── Exception.php │ ├── Markdown.php │ ├── Request.php │ ├── Response.php │ ├── controllers │ │ ├── AssetController.php │ │ ├── BaseMigrateController.php │ │ ├── CacheController.php │ │ ├── FixtureController.php │ │ ├── HelpController.php │ │ ├── MessageController.php │ │ ├── MigrateController.php │ │ └── ServeController.php │ └── runtime │ │ └── .gitignore │ ├── data │ ├── ActiveDataProvider.php │ ├── ArrayDataProvider.php │ ├── BaseDataProvider.php │ ├── DataProviderInterface.php │ ├── Pagination.php │ ├── Sort.php │ └── SqlDataProvider.php │ ├── db │ ├── ActiveQuery.php │ ├── ActiveQueryInterface.php │ ├── ActiveQueryTrait.php │ ├── ActiveRecord.php │ ├── ActiveRecordInterface.php │ ├── ActiveRelationTrait.php │ ├── AfterSaveEvent.php │ ├── BaseActiveRecord.php │ ├── BatchQueryResult.php │ ├── ColumnSchema.php │ ├── ColumnSchemaBuilder.php │ ├── Command.php │ ├── Connection.php │ ├── DataReader.php │ ├── Exception.php │ ├── Expression.php │ ├── IntegrityException.php │ ├── Migration.php │ ├── MigrationInterface.php │ ├── Query.php │ ├── QueryBuilder.php │ ├── QueryInterface.php │ ├── QueryTrait.php │ ├── Schema.php │ ├── SchemaBuilderTrait.php │ ├── StaleObjectException.php │ ├── TableSchema.php │ ├── Transaction.php │ ├── cubrid │ │ ├── QueryBuilder.php │ │ └── Schema.php │ ├── mssql │ │ ├── ColumnSchemaBuilder.php │ │ ├── PDO.php │ │ ├── QueryBuilder.php │ │ ├── Schema.php │ │ ├── SqlsrvPDO.php │ │ └── TableSchema.php │ ├── mysql │ │ ├── QueryBuilder.php │ │ └── Schema.php │ ├── oci │ │ ├── ColumnSchemaBuilder.php │ │ ├── QueryBuilder.php │ │ └── Schema.php │ ├── pgsql │ │ ├── ColumnSchemaBuilder.php │ │ ├── QueryBuilder.php │ │ └── Schema.php │ └── sqlite │ │ ├── QueryBuilder.php │ │ └── Schema.php │ ├── di │ ├── Container.php │ ├── Instance.php │ └── ServiceLocator.php │ ├── filters │ ├── AccessControl.php │ ├── AccessRule.php │ ├── ContentNegotiator.php │ ├── Cors.php │ ├── HttpCache.php │ ├── PageCache.php │ ├── RateLimitInterface.php │ ├── RateLimiter.php │ ├── VerbFilter.php │ └── auth │ │ ├── AuthInterface.php │ │ ├── AuthMethod.php │ │ ├── CompositeAuth.php │ │ ├── HttpBasicAuth.php │ │ ├── HttpBearerAuth.php │ │ └── QueryParamAuth.php │ ├── grid │ ├── ActionColumn.php │ ├── CheckboxColumn.php │ ├── Column.php │ ├── DataColumn.php │ ├── GridView.php │ ├── GridViewAsset.php │ └── SerialColumn.php │ ├── helpers │ ├── ArrayHelper.php │ ├── BaseArrayHelper.php │ ├── BaseConsole.php │ ├── BaseFileHelper.php │ ├── BaseFormatConverter.php │ ├── BaseHtml.php │ ├── BaseHtmlPurifier.php │ ├── BaseInflector.php │ ├── BaseJson.php │ ├── BaseMarkdown.php │ ├── BaseStringHelper.php │ ├── BaseUrl.php │ ├── BaseVarDumper.php │ ├── Console.php │ ├── FileHelper.php │ ├── FormatConverter.php │ ├── Html.php │ ├── HtmlPurifier.php │ ├── Inflector.php │ ├── Json.php │ ├── Markdown.php │ ├── StringHelper.php │ ├── Url.php │ ├── VarDumper.php │ └── mimeTypes.php │ ├── i18n │ ├── DbMessageSource.php │ ├── Formatter.php │ ├── GettextFile.php │ ├── GettextMessageSource.php │ ├── GettextMoFile.php │ ├── GettextPoFile.php │ ├── I18N.php │ ├── MessageFormatter.php │ ├── MessageSource.php │ ├── MissingTranslationEvent.php │ ├── PhpMessageSource.php │ └── migrations │ │ ├── m150207_210500_i18n_init.php │ │ ├── schema-mssql.sql │ │ ├── schema-mysql.sql │ │ ├── schema-oci.sql │ │ ├── schema-pgsql.sql │ │ └── schema-sqlite.sql │ ├── log │ ├── DbTarget.php │ ├── Dispatcher.php │ ├── EmailTarget.php │ ├── FileTarget.php │ ├── Logger.php │ ├── SyslogTarget.php │ ├── Target.php │ └── migrations │ │ ├── m141106_185632_log_init.php │ │ ├── schema-mssql.sql │ │ ├── schema-mysql.sql │ │ ├── schema-oci.sql │ │ ├── schema-pgsql.sql │ │ └── schema-sqlite.sql │ ├── mail │ ├── BaseMailer.php │ ├── BaseMessage.php │ ├── MailEvent.php │ ├── MailerInterface.php │ └── MessageInterface.php │ ├── messages │ ├── ar │ │ └── yii.php │ ├── az │ │ └── yii.php │ ├── bg │ │ └── yii.php │ ├── bs │ │ └── yii.php │ ├── ca │ │ └── yii.php │ ├── config.php │ ├── cs │ │ └── yii.php │ ├── da │ │ └── yii.php │ ├── de │ │ └── yii.php │ ├── el │ │ └── yii.php │ ├── es │ │ └── yii.php │ ├── et │ │ └── yii.php │ ├── fa │ │ └── yii.php │ ├── fi │ │ └── yii.php │ ├── fr │ │ └── yii.php │ ├── he │ │ └── yii.php │ ├── hr │ │ └── yii.php │ ├── hu │ │ └── yii.php │ ├── id │ │ └── yii.php │ ├── it │ │ └── yii.php │ ├── ja │ │ └── yii.php │ ├── ka │ │ └── yii.php │ ├── kk │ │ └── yii.php │ ├── ko │ │ └── yii.php │ ├── lt │ │ └── yii.php │ ├── lv │ │ └── yii.php │ ├── ms │ │ └── yii.php │ ├── nb-NO │ │ └── yii.php │ ├── nl │ │ └── yii.php │ ├── pl │ │ └── yii.php │ ├── pt-BR │ │ └── yii.php │ ├── pt │ │ └── yii.php │ ├── ro │ │ └── yii.php │ ├── ru │ │ └── yii.php │ ├── sk │ │ └── yii.php │ ├── sl │ │ └── yii.php │ ├── sr-Latn │ │ └── yii.php │ ├── sr │ │ └── yii.php │ ├── sv │ │ └── yii.php │ ├── th │ │ └── yii.php │ ├── tj │ │ └── yii.php │ ├── tr │ │ └── yii.php │ ├── uk │ │ └── yii.php │ ├── uz │ │ └── yii.php │ ├── vi │ │ └── yii.php │ ├── zh-CN │ │ └── yii.php │ └── zh-TW │ │ └── yii.php │ ├── mutex │ ├── DbMutex.php │ ├── FileMutex.php │ ├── Mutex.php │ └── MysqlMutex.php │ ├── rbac │ ├── Assignment.php │ ├── BaseManager.php │ ├── DbManager.php │ ├── Item.php │ ├── ManagerInterface.php │ ├── Permission.php │ ├── PhpManager.php │ ├── Role.php │ ├── Rule.php │ └── migrations │ │ ├── m140506_102106_rbac_init.php │ │ ├── schema-mssql.sql │ │ ├── schema-mysql.sql │ │ ├── schema-oci.sql │ │ ├── schema-pgsql.sql │ │ └── schema-sqlite.sql │ ├── requirements │ ├── YiiRequirementChecker.php │ ├── requirements.php │ └── views │ │ ├── console │ │ └── index.php │ │ └── web │ │ ├── css.php │ │ └── index.php │ ├── rest │ ├── Action.php │ ├── ActiveController.php │ ├── Controller.php │ ├── CreateAction.php │ ├── DeleteAction.php │ ├── IndexAction.php │ ├── OptionsAction.php │ ├── Serializer.php │ ├── UpdateAction.php │ ├── UrlRule.php │ └── ViewAction.php │ ├── test │ ├── ActiveFixture.php │ ├── ArrayFixture.php │ ├── BaseActiveFixture.php │ ├── DbFixture.php │ ├── Fixture.php │ ├── FixtureTrait.php │ └── InitDbFixture.php │ ├── validators │ ├── BooleanValidator.php │ ├── CompareValidator.php │ ├── DateValidator.php │ ├── DefaultValueValidator.php │ ├── EachValidator.php │ ├── EmailValidator.php │ ├── ExistValidator.php │ ├── FileValidator.php │ ├── FilterValidator.php │ ├── ImageValidator.php │ ├── InlineValidator.php │ ├── IpValidator.php │ ├── NumberValidator.php │ ├── PunycodeAsset.php │ ├── RangeValidator.php │ ├── RegularExpressionValidator.php │ ├── RequiredValidator.php │ ├── SafeValidator.php │ ├── StringValidator.php │ ├── UniqueValidator.php │ ├── UrlValidator.php │ ├── ValidationAsset.php │ └── Validator.php │ ├── views │ ├── addColumnMigration.php │ ├── createJunctionMigration.php │ ├── createTableMigration.php │ ├── dropColumnMigration.php │ ├── dropTableMigration.php │ ├── errorHandler │ │ ├── callStackItem.php │ │ ├── error.php │ │ ├── exception.php │ │ └── previousException.php │ ├── messageConfig.php │ └── migration.php │ ├── web │ ├── Application.php │ ├── AssetBundle.php │ ├── AssetConverter.php │ ├── AssetConverterInterface.php │ ├── AssetManager.php │ ├── BadRequestHttpException.php │ ├── CacheSession.php │ ├── CompositeUrlRule.php │ ├── ConflictHttpException.php │ ├── Controller.php │ ├── Cookie.php │ ├── CookieCollection.php │ ├── DbSession.php │ ├── ErrorAction.php │ ├── ErrorHandler.php │ ├── ForbiddenHttpException.php │ ├── GoneHttpException.php │ ├── GroupUrlRule.php │ ├── HeaderCollection.php │ ├── HtmlResponseFormatter.php │ ├── HttpException.php │ ├── IdentityInterface.php │ ├── JqueryAsset.php │ ├── JsExpression.php │ ├── JsonParser.php │ ├── JsonResponseFormatter.php │ ├── Link.php │ ├── Linkable.php │ ├── MethodNotAllowedHttpException.php │ ├── MultiFieldSession.php │ ├── NotAcceptableHttpException.php │ ├── NotFoundHttpException.php │ ├── Request.php │ ├── RequestParserInterface.php │ ├── Response.php │ ├── ResponseFormatterInterface.php │ ├── ServerErrorHttpException.php │ ├── Session.php │ ├── SessionIterator.php │ ├── TooManyRequestsHttpException.php │ ├── UnauthorizedHttpException.php │ ├── UnprocessableEntityHttpException.php │ ├── UnsupportedMediaTypeHttpException.php │ ├── UploadedFile.php │ ├── UrlManager.php │ ├── UrlRule.php │ ├── UrlRuleInterface.php │ ├── User.php │ ├── UserEvent.php │ ├── View.php │ ├── ViewAction.php │ ├── XmlResponseFormatter.php │ └── YiiAsset.php │ ├── widgets │ ├── ActiveField.php │ ├── ActiveForm.php │ ├── ActiveFormAsset.php │ ├── BaseListView.php │ ├── Block.php │ ├── Breadcrumbs.php │ ├── ContentDecorator.php │ ├── DetailView.php │ ├── FragmentCache.php │ ├── InputWidget.php │ ├── LinkPager.php │ ├── LinkSorter.php │ ├── ListView.php │ ├── MaskedInput.php │ ├── MaskedInputAsset.php │ ├── Menu.php │ ├── Pjax.php │ ├── PjaxAsset.php │ └── Spaceless.php │ ├── yii │ └── yii.bat ├── views ├── api │ ├── _searchApi.php │ ├── _searchProject.php │ ├── addApi.php │ ├── addProject.php │ ├── apiInfo.php │ └── index.php ├── layouts │ └── main.php └── site │ ├── error.php │ └── login.php ├── web ├── assets │ └── .gitignore ├── css │ └── site.css ├── favicon.ico ├── index-test.php ├── index.php ├── js │ └── my.js └── robots.txt ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/README.md -------------------------------------------------------------------------------- /api_manager.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/api_manager.sql -------------------------------------------------------------------------------- /assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/assets/AppAsset.php -------------------------------------------------------------------------------- /commands/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/commands/HelloController.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/composer.lock -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/config/console.php -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/config/db.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/config/params.php -------------------------------------------------------------------------------- /config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/config/web.php -------------------------------------------------------------------------------- /controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/controllers/ApiController.php -------------------------------------------------------------------------------- /controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/controllers/SiteController.php -------------------------------------------------------------------------------- /img/aaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/img/aaa.png -------------------------------------------------------------------------------- /img/bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/img/bbb.png -------------------------------------------------------------------------------- /img/ccc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/img/ccc.png -------------------------------------------------------------------------------- /img/ddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/img/ddd.png -------------------------------------------------------------------------------- /img/eee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/img/eee.png -------------------------------------------------------------------------------- /mail/layouts/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/mail/layouts/html.php -------------------------------------------------------------------------------- /models/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/models/Api.php -------------------------------------------------------------------------------- /models/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/models/LoginForm.php -------------------------------------------------------------------------------- /models/ModifyLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/models/ModifyLogs.php -------------------------------------------------------------------------------- /models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/models/Project.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/models/User.php -------------------------------------------------------------------------------- /requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/requirements.php -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception.yml -------------------------------------------------------------------------------- /tests/codeception/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/.gitignore -------------------------------------------------------------------------------- /tests/codeception/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/_bootstrap.php -------------------------------------------------------------------------------- /tests/codeception/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/codeception/_pages/AboutPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/_pages/AboutPage.php -------------------------------------------------------------------------------- /tests/codeception/_pages/ContactPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/_pages/ContactPage.php -------------------------------------------------------------------------------- /tests/codeception/_pages/LoginPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/_pages/LoginPage.php -------------------------------------------------------------------------------- /tests/codeception/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/codeception/acceptance/AboutCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/acceptance/AboutCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/ContactCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/acceptance/ContactCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/HomeCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/acceptance/HomeCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/LoginCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/tests/codeception/acceptance/LoginCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/concat.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/push.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/slice.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/support.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/var/toString.js -------------------------------------------------------------------------------- /vendor/bower/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/jquery/src/wrap.js -------------------------------------------------------------------------------- /vendor/bower/punycode/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/punycode/LICENSE-MIT.txt -------------------------------------------------------------------------------- /vendor/bower/punycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/punycode/README.md -------------------------------------------------------------------------------- /vendor/bower/punycode/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/punycode/bower.json -------------------------------------------------------------------------------- /vendor/bower/punycode/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/punycode/punycode.js -------------------------------------------------------------------------------- /vendor/bower/punycode/punycode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/punycode/punycode.min.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/.gitignore -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/.jshintrc -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/.travis.yml -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/Gruntfile.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/LICENSE -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/README.md -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/bower.json -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/composer.json -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/dist/bloodhound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/dist/bloodhound.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/doc/bloodhound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/doc/bloodhound.md -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/karma.conf.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/package.json -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/src/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/src/common/utils.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/src/typeahead/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/src/typeahead/css.js -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/test/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/test/ci -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/test/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/typeahead.js/test/playground.html -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/.gitignore -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/LICENSE -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/README.md -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/bower.json -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/composer.json -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/jquery.pjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/bower/yii2-pjax/jquery.pjax.js -------------------------------------------------------------------------------- /vendor/cebe/markdown/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | composer.lock 3 | /vendor 4 | README.html 5 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/cebe/markdown/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/.travis.yml -------------------------------------------------------------------------------- /vendor/cebe/markdown/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/GithubMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/GithubMarkdown.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/LICENSE -------------------------------------------------------------------------------- /vendor/cebe/markdown/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/Markdown.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/MarkdownExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/MarkdownExtra.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/Parser.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/README.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/bin/markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/bin/markdown -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/CodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/CodeTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/FencedCodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/FencedCodeTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/HeadlineTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/HeadlineTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/HtmlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/HtmlTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/ListTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/ListTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/QuoteTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/QuoteTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/RuleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/RuleTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/block/TableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/block/TableTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/composer.json -------------------------------------------------------------------------------- /vendor/cebe/markdown/inline/CodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/inline/CodeTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/inline/LinkTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/inline/LinkTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/inline/StrikeoutTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/inline/StrikeoutTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/inline/UrlLinkTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/inline/UrlLinkTrait.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/MarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/MarkdownTest.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/github-data/del.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/github-data/url.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/hr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/markdown-data/hr.md -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/cebe/markdown/tests/profile.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/.gitattributes: -------------------------------------------------------------------------------- 1 | configdoc/usage.xml -crlf 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/.gitignore -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/CREDITS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/Doxyfile -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/FOCUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/FOCUS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/INSTALL -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/INSTALL.fr.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/INSTALL.fr.utf8 -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/LICENSE -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/NEWS -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/README -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/TODO -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.6.0 -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/WHATSNEW -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/WYSIWYG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/WYSIWYG -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/1000passes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/1000passes.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/100cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/100cases.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/favicon.ico -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/icon-16x16.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/icon-16x16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/icon-16x16.svg -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/icon-32x32.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/icon-32x32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/icon-32x32.svg -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/icon-64x64.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/logo-large.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/logo.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/logo.svg -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/art/powered.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/benchmarks/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/composer.json -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/configdoc/types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/configdoc/types.xml -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/configdoc/usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/configdoc/usage.xml -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/docs/dev-flush.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/docs/dev-flush.html -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/docs/fixquotes.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/docs/fixquotes.htc -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/docs/index.html -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/docs/ref-whatwg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/docs/ref-whatwg.txt -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/docs/style.css -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/extras/FSTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/extras/FSTools.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/extras/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/extras/README -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/maintenance/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/package.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/phpdoc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/phpdoc.ini -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/plugins/modx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/plugins/modx.txt -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/plugins/phorum/.gitignore: -------------------------------------------------------------------------------- 1 | migrate.php 2 | htmlpurifier/* 3 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/release1-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/release1-update.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/release2-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/release2-tag.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/smoketests/all.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/smoketests/img.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "Test Schema" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/tests/Debugger.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigSchema/Validator/directive/ignoreNamespace.vtest: -------------------------------------------------------------------------------- 1 | Ns 2 | DESCRIPTION: Namespace 3 | 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigTest-create.ini: -------------------------------------------------------------------------------- 1 | [Cake] 2 | Sprinkles = 42 3 | 4 | ; vim: et sw=4 sts=4 5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigTest-finalize.ini: -------------------------------------------------------------------------------- 1 | [Poem] 2 | Meter = alexandrine 3 | 4 | ; vim: et sw=4 sts=4 5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/whitespace-preserve.htmlt: -------------------------------------------------------------------------------- 1 | --HTML-- 2 | Foo bar 3 | --# vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/PHPT/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/StringHashParser/Default.txt: -------------------------------------------------------------------------------- 1 | DefaultValue 2 | --# vim: et sw=4 sts=4 3 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/tests/common.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/tests/index.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/multitest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/tests/multitest.php -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/tmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/ezyang/htmlpurifier/tests/tmp/README -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/src/Faker/Factory.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/documentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/test/documentor.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/README -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/composer.json -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/example/a.txt -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/example/b.txt -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/example/example.php -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/example/styles.css -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/lib/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/phpspec/php-diff/lib/Diff.php -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/.gitattributes -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/.gitignore -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/.travis.yml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/LICENSE -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/README -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.1 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/composer.json -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/doc/headers.rst -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/doc/index.rst -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/doc/plugins.rst -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/sending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/swiftmailer/swiftmailer/doc/sending.rst -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/yiisoft/extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/extensions.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/ActiveField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/ActiveField.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/ActiveForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/ActiveForm.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Alert.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/BaseHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/BaseHtml.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Button.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/ButtonGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/ButtonGroup.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Carousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Carousel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Collapse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Collapse.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Dropdown.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Html.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Makefile -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Modal.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Nav.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/NavBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/NavBar.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Progress.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Tabs.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/Widget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-bootstrap/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/BasePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/BasePage.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/DbTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/DbTestCase.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/LICENSE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/TestCase.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-codeception/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-codeception/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/Installer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/LICENSE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/Plugin.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-composer/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/DebugAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/DebugAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/LogTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/LogTarget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/Module.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/Panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/Panel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/ToolbarAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/ToolbarAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/assets/bg.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/assets/main.css -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/assets/toolbar.css -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/assets/toolbar.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/models/search/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/models/search/Db.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/panels/DbPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/panels/DbPanel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/panels/LogPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/panels/LogPanel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/panels/MailPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-debug/panels/MailPanel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-faker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-faker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-faker/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-faker/LICENSE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-faker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-faker/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-faker/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/CodeFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/CodeFile.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/Generator.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/GiiAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/GiiAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/Makefile -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/Module.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/TypeAheadAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/TypeAheadAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/assets/gii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/assets/gii.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/assets/logo.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/assets/main.css -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/views/default/diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/views/default/diff.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/views/default/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/views/default/view.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-gii/views/layouts/main.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/LICENSE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/Logger.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/Mailer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/Makefile -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/Message.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-swiftmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2-swiftmailer/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | 4 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/BaseYii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/BaseYii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/LICENSE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/README.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/UPGRADE.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/Yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/Yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/assets/yii.activeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/assets/yii.activeForm.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/assets/yii.captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/assets/yii.captcha.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/assets/yii.gridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/assets/yii.gridView.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/assets/yii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/assets/yii.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/assets/yii.validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/assets/yii.validation.js -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Action.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ActionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ActionEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ActionFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ActionFilter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Application.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ArrayAccessTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ArrayAccessTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Arrayable.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ArrayableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ArrayableTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Behavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Behavior.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Component.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Configurable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Configurable.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Controller.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/DynamicModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/DynamicModel.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ErrorException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Event.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Exception.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ExitException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/InlineAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/InlineAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Model.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ModelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ModelEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Module.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Object.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Request.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Response.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Security.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Theme.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/UserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/UserException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/View.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ViewEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ViewEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/ViewRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/ViewRenderer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/base/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/base/Widget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/ApcCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/ApcCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/ArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/ArrayCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/Cache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/DbCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/DbCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/DbDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/DbDependency.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/Dependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/Dependency.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/DummyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/DummyCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/FileCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/FileDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/FileDependency.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/MemCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/MemCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/MemCacheServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/MemCacheServer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/TagDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/TagDependency.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/WinCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/WinCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/XCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/XCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/caching/ZendDataCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/caching/ZendDataCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/captcha/Captcha.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/CaptchaAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/captcha/CaptchaAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/CaptchaAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/captcha/CaptchaAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.md -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.ttf -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/classes.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/composer.json -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Application.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Controller.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Exception.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Markdown.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Request.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/console/Response.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/console/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/data/ArrayDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/data/ArrayDataProvider.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/data/BaseDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/data/BaseDataProvider.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/data/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/data/Pagination.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/data/Sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/data/Sort.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/data/SqlDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/data/SqlDataProvider.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ActiveQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ActiveQuery.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ActiveQueryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ActiveQueryTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ActiveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ActiveRecord.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ActiveRelationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ActiveRelationTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/AfterSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/AfterSaveEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/BaseActiveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/BaseActiveRecord.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/BatchQueryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/BatchQueryResult.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ColumnSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ColumnSchema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/ColumnSchemaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/ColumnSchemaBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Command.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Connection.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/DataReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/DataReader.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Exception.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Expression.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/IntegrityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/IntegrityException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Migration.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/MigrationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/MigrationInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Query.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/QueryInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/QueryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/QueryTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/SchemaBuilderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/SchemaBuilderTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/TableSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/TableSchema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/Transaction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/cubrid/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/cubrid/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/cubrid/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/cubrid/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mssql/PDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mssql/PDO.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mssql/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mssql/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mssql/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mssql/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mssql/SqlsrvPDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mssql/SqlsrvPDO.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mssql/TableSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mssql/TableSchema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mysql/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mysql/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/mysql/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/mysql/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/oci/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/oci/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/oci/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/oci/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/pgsql/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/pgsql/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/pgsql/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/pgsql/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/sqlite/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/sqlite/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/db/sqlite/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/db/sqlite/Schema.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/di/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/di/Container.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/di/Instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/di/Instance.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/di/ServiceLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/di/ServiceLocator.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/AccessControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/AccessControl.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/AccessRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/AccessRule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/Cors.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/HttpCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/HttpCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/PageCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/PageCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/RateLimiter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/filters/VerbFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/filters/VerbFilter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/ActionColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/ActionColumn.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/CheckboxColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/CheckboxColumn.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/Column.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/DataColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/DataColumn.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/GridView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/GridView.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/GridViewAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/GridViewAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/grid/SerialColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/grid/SerialColumn.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/ArrayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/ArrayHelper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseConsole.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseFileHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseFileHelper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseHtml.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseInflector.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseJson.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseMarkdown.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseUrl.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/BaseVarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/BaseVarDumper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Console.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/FileHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/FileHelper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Html.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/HtmlPurifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/HtmlPurifier.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Inflector.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Json.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Markdown.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/StringHelper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/Url.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/VarDumper.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/mimeTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/helpers/mimeTypes.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/DbMessageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/DbMessageSource.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/Formatter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/GettextFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/GettextFile.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/GettextMoFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/GettextMoFile.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/GettextPoFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/GettextPoFile.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/I18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/I18N.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/MessageFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/MessageFormatter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/MessageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/MessageSource.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/i18n/PhpMessageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/i18n/PhpMessageSource.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/DbTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/DbTarget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/Dispatcher.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/EmailTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/EmailTarget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/FileTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/FileTarget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/Logger.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/SyslogTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/SyslogTarget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/log/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/log/Target.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mail/BaseMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mail/BaseMailer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mail/BaseMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mail/BaseMessage.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mail/MailEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mail/MailEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mail/MailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mail/MailerInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mail/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mail/MessageInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ar/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ar/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/az/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/az/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/bg/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/bg/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/bs/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/bs/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ca/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ca/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/config.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/cs/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/cs/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/da/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/da/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/de/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/de/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/el/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/el/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/es/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/es/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/et/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/et/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/fa/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/fa/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/fi/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/fi/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/fr/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/fr/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/he/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/he/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/hr/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/hr/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/hu/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/hu/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/id/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/id/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/it/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/it/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ja/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ja/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ka/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ka/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/kk/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/kk/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ko/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ko/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/lt/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/lt/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/lv/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/lv/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ms/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ms/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/nb-NO/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/nb-NO/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/nl/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/nl/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/pl/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/pl/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/pt-BR/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/pt-BR/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/pt/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/pt/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ro/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ro/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/ru/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/ru/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/sk/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/sk/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/sl/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/sl/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/sr-Latn/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/sr-Latn/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/sr/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/sr/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/sv/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/sv/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/th/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/th/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/tj/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/tj/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/tr/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/tr/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/uk/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/uk/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/uz/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/uz/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/vi/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/vi/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/zh-CN/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/zh-CN/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/messages/zh-TW/yii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/messages/zh-TW/yii.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mutex/DbMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mutex/DbMutex.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mutex/FileMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mutex/FileMutex.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mutex/Mutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mutex/Mutex.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/mutex/MysqlMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/mutex/MysqlMutex.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Assignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/Assignment.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/BaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/BaseManager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/DbManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/DbManager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/Item.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/ManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/ManagerInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/Permission.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/PhpManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/PhpManager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/Role.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rbac/Rule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/Action.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/ActiveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/ActiveController.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/Controller.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/CreateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/CreateAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/DeleteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/DeleteAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/IndexAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/IndexAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/OptionsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/OptionsAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/Serializer.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/UpdateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/UpdateAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/UrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/UrlRule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rest/ViewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/rest/ViewAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/ActiveFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/ActiveFixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/ArrayFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/ArrayFixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/BaseActiveFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/BaseActiveFixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/DbFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/DbFixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/Fixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/Fixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/FixtureTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/FixtureTrait.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/test/InitDbFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/test/InitDbFixture.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/validators/IpValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/validators/IpValidator.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/validators/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/validators/Validator.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/messageConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/views/messageConfig.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/views/migration.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Application.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/AssetBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/AssetBundle.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/AssetConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/AssetConverter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/AssetManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/AssetManager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/CacheSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/CacheSession.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/CompositeUrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/CompositeUrlRule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Controller.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Cookie.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/CookieCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/CookieCollection.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/DbSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/DbSession.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/ErrorAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/ErrorAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/GoneHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/GoneHttpException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/GroupUrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/GroupUrlRule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/HeaderCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/HeaderCollection.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/HttpException.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/IdentityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/IdentityInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/JqueryAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/JqueryAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/JsExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/JsExpression.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/JsonParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/JsonParser.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Link.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Linkable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Linkable.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/MultiFieldSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/MultiFieldSession.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Request.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Response.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/Session.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/SessionIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/SessionIterator.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/UploadedFile.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/UrlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/UrlManager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/UrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/UrlRule.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/UrlRuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/UrlRuleInterface.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/User.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/UserEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/UserEvent.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/View.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/ViewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/ViewAction.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/web/YiiAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/web/YiiAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/ActiveField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/ActiveField.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/ActiveForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/ActiveForm.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/BaseListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/BaseListView.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/Block.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/Breadcrumbs.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/DetailView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/DetailView.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/FragmentCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/FragmentCache.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/InputWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/InputWidget.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/LinkPager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/LinkPager.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/LinkSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/LinkSorter.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/ListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/ListView.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/MaskedInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/MaskedInput.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/Menu.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/Pjax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/Pjax.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/PjaxAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/PjaxAsset.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/widgets/Spaceless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/widgets/Spaceless.php -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/yii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/yii -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/yii.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/vendor/yiisoft/yii2/yii.bat -------------------------------------------------------------------------------- /views/api/_searchApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/_searchApi.php -------------------------------------------------------------------------------- /views/api/_searchProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/_searchProject.php -------------------------------------------------------------------------------- /views/api/addApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/addApi.php -------------------------------------------------------------------------------- /views/api/addProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/addProject.php -------------------------------------------------------------------------------- /views/api/apiInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/apiInfo.php -------------------------------------------------------------------------------- /views/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/api/index.php -------------------------------------------------------------------------------- /views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/layouts/main.php -------------------------------------------------------------------------------- /views/site/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/site/error.php -------------------------------------------------------------------------------- /views/site/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/views/site/login.php -------------------------------------------------------------------------------- /web/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/web/css/site.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/index-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/web/index-test.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/web/index.php -------------------------------------------------------------------------------- /web/js/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/web/js/my.js -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /yii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/yii -------------------------------------------------------------------------------- /yii.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10xjzheng/ApiManager/HEAD/yii.bat --------------------------------------------------------------------------------