├── vendor ├── bin │ ├── yii │ └── markdown ├── bower │ ├── jquery │ │ └── src │ │ │ ├── outro.js │ │ │ ├── sizzle │ │ │ └── test │ │ │ │ └── data │ │ │ │ └── empty.js │ │ │ ├── selector.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── rnotwhite.js │ │ │ ├── strundefined.js │ │ │ ├── push.js │ │ │ ├── slice.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── toString.js │ │ │ ├── hasOwn.js │ │ │ └── support.js │ │ │ ├── ajax │ │ │ ├── var │ │ │ │ ├── rquery.js │ │ │ │ └── nonce.js │ │ │ └── parseJSON.js │ │ │ ├── css │ │ │ ├── var │ │ │ │ ├── rmargin.js │ │ │ │ ├── cssExpand.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ ├── isHidden.js │ │ │ │ └── getStyles.js │ │ │ └── hiddenVisibleSelectors.js │ │ │ ├── data │ │ │ ├── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ └── accepts.js │ │ │ ├── manipulation │ │ │ ├── var │ │ │ │ └── rcheckableType.js │ │ │ └── _evalUrl.js │ │ │ ├── core │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── traversing │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ │ ├── event │ │ │ ├── support.js │ │ │ └── ajax.js │ │ │ ├── attributes.js │ │ │ ├── deprecated.js │ │ │ ├── effects │ │ │ └── animatedSelector.js │ │ │ └── selector-sizzle.js │ ├── bootstrap │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── dist │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── less │ │ │ └── mixins │ │ │ ├── center-block.less │ │ │ ├── text-emphasis.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── background-variant.less │ │ │ ├── text-overflow.less │ │ │ ├── tab-focus.less │ │ │ ├── labels.less │ │ │ ├── resize.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── nav-divider.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ └── responsive-visibility.less │ ├── typeahead.js │ │ ├── .gitignore │ │ ├── src │ │ │ └── bloodhound │ │ │ │ └── version.js │ │ ├── .jshintrc │ │ ├── bower.json │ │ └── test │ │ │ └── ci │ ├── punycode │ │ └── bower.json │ └── yii2-pjax │ │ ├── .gitignore │ │ └── bower.json ├── ezyang │ └── htmlpurifier │ │ ├── VERSION │ │ ├── benchmarks │ │ ├── .htaccess │ │ ├── samples │ │ │ └── Lexer │ │ │ │ ├── 4.html │ │ │ │ └── DISCLAIMER.txt │ │ └── ConfigSchema.php │ │ ├── maintenance │ │ ├── .htaccess │ │ ├── regenerate-docs.sh │ │ ├── merge-library.php │ │ └── compile-doxygen.sh │ │ ├── .gitattributes │ │ ├── tests │ │ ├── HTMLPurifier │ │ │ ├── PHPT │ │ │ │ ├── .gitignore │ │ │ │ ├── stub.phpt │ │ │ │ ├── func.phpt │ │ │ │ ├── utf8.phpt │ │ │ │ ├── loading │ │ │ │ │ ├── auto.phpt │ │ │ │ │ ├── _autoload.inc │ │ │ │ │ ├── standalone-autoload.phpt │ │ │ │ │ ├── auto-includes.phpt │ │ │ │ │ ├── path-includes.phpt │ │ │ │ │ └── safe-includes.phpt │ │ │ │ ├── kses │ │ │ │ │ └── basic.phpt │ │ │ │ ├── domxml.phpt │ │ │ │ └── ze1_compatibility_mode.phpt │ │ │ ├── StringHashParser │ │ │ │ ├── Default.txt │ │ │ │ ├── OverrideSingle.txt │ │ │ │ ├── AppendMultiline.txt │ │ │ │ ├── Simple.txt │ │ │ │ └── Multi.txt │ │ │ ├── ConfigTest-create.ini │ │ │ ├── ConfigTest-finalize.ini │ │ │ ├── HTMLT │ │ │ │ ├── whitespace-preserve.htmlt │ │ │ │ ├── empty.htmlt │ │ │ │ ├── basic.htmlt │ │ │ │ ├── inline-list-loop.htmlt │ │ │ │ ├── trusted-comments.htmlt │ │ │ │ ├── file-uri.htmlt │ │ │ │ ├── id-default.htmlt │ │ │ │ ├── disable-uri.htmlt │ │ │ │ ├── name.htmlt │ │ │ │ ├── trusted-comments-required.htmlt │ │ │ │ ├── blacklist-preserve.htmlt │ │ │ │ ├── trusted-comments-table.htmlt │ │ │ │ ├── style-onload.htmlt │ │ │ │ ├── id-enabled.htmlt │ │ │ │ ├── css-allowed-preserve.htmlt │ │ │ │ ├── safe-iframe-invalid.htmlt │ │ │ │ ├── inline-wraps-block.htmlt │ │ │ │ ├── strict-underline.htmlt │ │ │ │ ├── blacklist-remove.htmlt │ │ │ │ ├── strict-blockquote.htmlt │ │ │ │ ├── tidy-background.htmlt │ │ │ │ ├── css-allowed-remove.htmlt │ │ │ │ ├── allowed-preserve.htmlt │ │ │ │ ├── strict-blockquote-with-inline.htmlt │ │ │ │ ├── allowed-remove.htmlt │ │ │ │ ├── shift-jis-preserve-yen.htmlt │ │ │ │ ├── id-img.htmlt │ │ │ │ ├── shift-jis-remove-yen.htmlt │ │ │ │ ├── id-name-mix.htmlt │ │ │ │ ├── list-nesting.htmlt │ │ │ │ ├── script-bare.htmlt │ │ │ │ ├── script-cdata.htmlt │ │ │ │ ├── script-comment.htmlt │ │ │ │ ├── script-dbl-comment.htmlt │ │ │ │ ├── script-ideal.htmlt │ │ │ │ ├── double-youtube.htmlt │ │ │ │ ├── safe-iframe-youtube.htmlt │ │ │ │ └── secure-munge.htmlt │ │ │ ├── ConfigSchema │ │ │ │ └── Validator │ │ │ │ │ └── directive │ │ │ │ │ ├── ignoreNamespace.vtest │ │ │ │ │ ├── defaultNullWithAllowed.vtest │ │ │ │ │ ├── descriptionNotEmpty.vtest │ │ │ │ │ ├── typeDefined.vtest │ │ │ │ │ ├── typeExists.vtest │ │ │ │ │ ├── defaultType.vtest │ │ │ │ │ ├── allowedNotEmpty.vtest │ │ │ │ │ ├── defaultIsAllowed.vtest │ │ │ │ │ ├── allowedIsString.vtest │ │ │ │ │ ├── valueAliasesAliasIsString.vtest │ │ │ │ │ ├── typeWithAllowedIsStringType.vtest │ │ │ │ │ ├── unique.vtest │ │ │ │ │ ├── valueAliasesNotAliasSelf.vtest │ │ │ │ │ ├── valueAliasesRealIsString.vtest │ │ │ │ │ ├── typeWithValueAliasesIsStringType.vtest │ │ │ │ │ ├── valueAliasesAliasNotAllowed.vtest │ │ │ │ │ ├── valueAliasesRealAllowed.vtest │ │ │ │ │ ├── aliasesDirectiveCollision.vtest │ │ │ │ │ └── aliasesAliasCollision.vtest │ │ │ ├── ConfigTest-loadIni.ini │ │ │ ├── DefinitionCache │ │ │ │ └── SerializerTest │ │ │ │ │ └── README │ │ │ ├── DefinitionTestable.php │ │ │ ├── AttrTransformHarness.php │ │ │ ├── HTMLModuleHarness.php │ │ │ ├── VarParser │ │ │ │ └── NativeTest.php │ │ │ ├── InjectorHarness.php │ │ │ ├── AttrDef │ │ │ │ ├── URI │ │ │ │ │ └── Email │ │ │ │ │ │ └── SimpleCheckTest.php │ │ │ │ └── TextTest.php │ │ │ ├── StrategyHarness.php │ │ │ ├── Strategy │ │ │ │ └── MakeWellFormed │ │ │ │ │ └── SkipInjector.php │ │ │ ├── ChildDefHarness.php │ │ │ └── TokenFactoryTest.php │ │ ├── default_load.php │ │ ├── tmp │ │ │ └── README │ │ └── generate_mock_once.func.php │ │ ├── plugins │ │ └── phorum │ │ │ └── .gitignore │ │ ├── smoketests │ │ ├── test-schema │ │ │ ├── info.ini │ │ │ ├── Directive.txt │ │ │ ├── Type.txt │ │ │ ├── Type.int.txt │ │ │ ├── Type.bool.txt │ │ │ ├── Type.float.txt │ │ │ ├── Type.mixed.txt │ │ │ ├── Type.list.txt │ │ │ ├── Type.string.txt │ │ │ ├── Type.text.txt │ │ │ ├── Type.istring.txt │ │ │ ├── Type.hash.txt │ │ │ ├── Type.itext.txt │ │ │ ├── Directive.Allowed.txt │ │ │ ├── Type.nullbool.txt │ │ │ ├── Directive.Deprecated.txt │ │ │ ├── Type.lookup.txt │ │ │ └── Type.nullstring.txt │ │ └── img.png │ │ ├── library │ │ ├── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ │ ├── schema │ │ │ │ │ ├── info.ini │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ └── Core.RemoveProcessingInstructions.txt │ │ │ │ └── Exception.php │ │ │ ├── DefinitionCache │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ ├── Printer │ │ │ │ ├── ConfigForm.js │ │ │ │ └── ConfigForm.css │ │ │ ├── Token │ │ │ │ ├── Start.php │ │ │ │ └── Empty.php │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ ├── en-x-test.php │ │ │ │ │ └── en-x-testmini.php │ │ │ ├── VarParserException.php │ │ │ ├── Exception.php │ │ │ ├── HTMLModule │ │ │ │ ├── Tidy │ │ │ │ │ └── Transitional.php │ │ │ │ ├── XMLCommonAttributes.php │ │ │ │ └── NonXMLCommonAttributes.php │ │ │ ├── URIScheme │ │ │ │ └── https.php │ │ │ └── AttrDef │ │ │ │ └── URI │ │ │ │ └── Email.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.path.php │ │ └── HTMLPurifier.auto.php │ │ ├── art │ │ ├── logo.png │ │ ├── 100cases.png │ │ ├── favicon.ico │ │ ├── powered.png │ │ ├── 1000passes.png │ │ ├── icon-16x16.png │ │ ├── icon-32x32.png │ │ ├── icon-64x64.png │ │ └── logo-large.png │ │ ├── docs │ │ ├── specimens │ │ │ ├── img.png │ │ │ └── LICENSE │ │ └── fixquotes.htc │ │ ├── FOCUS │ │ ├── extras │ │ └── HTMLPurifierExtras.auto.php │ │ ├── WHATSNEW │ │ └── CREDITS ├── yiisoft │ ├── yii2 │ │ ├── .htaccess │ │ ├── .gitignore │ │ ├── captcha │ │ │ └── SpicyRice.ttf │ │ ├── helpers │ │ │ ├── Url.php │ │ │ ├── FileHelper.php │ │ │ ├── StringHelper.php │ │ │ ├── ArrayHelper.php │ │ │ ├── Inflector.php │ │ │ └── Console.php │ │ ├── rbac │ │ │ ├── Role.php │ │ │ └── Permission.php │ │ └── console │ │ │ └── Response.php │ ├── yii2-debug │ │ ├── assets │ │ │ └── bg.png │ │ └── views │ │ │ └── default │ │ │ └── panels │ │ │ ├── mail │ │ │ └── summary.php │ │ │ ├── assets │ │ │ └── summary.php │ │ │ ├── config │ │ │ └── summary.php │ │ │ └── profile │ │ │ └── summary.php │ └── yii2-gii │ │ ├── assets │ │ └── logo.png │ │ ├── generators │ │ ├── extension │ │ │ └── default │ │ │ │ └── AutoloadExample.php │ │ ├── module │ │ │ └── form.php │ │ ├── controller │ │ │ └── form.php │ │ └── form │ │ │ └── form.php │ │ └── views │ │ └── default │ │ └── diff.php ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ ├── smime │ │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ ├── StreamCollector.php │ │ ├── fixtures │ │ │ └── EsmtpTransportFixture.php │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ └── MimePartAcceptanceTest.php │ │ └── unit │ │ │ └── Swift │ │ │ └── Mime │ │ │ ├── SimpleMimeEntityTest.php │ │ │ └── HeaderEncoder │ │ │ └── Base64HeaderEncoderTest.php │ │ ├── .gitignore │ │ ├── .gitattributes │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── lib │ │ ├── dependency_maps │ │ │ └── message_deps.php │ │ └── classes │ │ │ └── Swift │ │ │ ├── Events │ │ │ └── EventListener.php │ │ │ └── Signer.php │ │ └── notes │ │ └── APPS ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── src │ │ └── Faker │ │ │ └── Provider │ │ │ ├── hy_AM │ │ │ └── Internet.php │ │ │ ├── ja_JP │ │ │ ├── PhoneNumber.php │ │ │ └── Company.php │ │ │ ├── zh_TW │ │ │ ├── Payment.php │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ │ ├── lv_LV │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ │ ├── fr_BE │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ │ ├── de_AT │ │ │ ├── Internet.php │ │ │ ├── Company.php │ │ │ └── PhoneNumber.php │ │ │ ├── nl_NL │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ │ ├── nl_BE │ │ │ ├── Internet.php │ │ │ └── Company.php │ │ │ ├── uk_UA │ │ │ └── Internet.php │ │ │ ├── cs_CZ │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ │ ├── bn_BD │ │ │ ├── PhoneNumber.php │ │ │ └── Utils.php │ │ │ ├── hu_HU │ │ │ ├── PhoneNumber.php │ │ │ └── Company.php │ │ │ ├── it_IT │ │ │ └── Internet.php │ │ │ ├── en_ZA │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ │ ├── ru_RU │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ │ ├── de_DE │ │ │ └── Internet.php │ │ │ ├── me_ME │ │ │ └── PhoneNumber.php │ │ │ ├── bg_BG │ │ │ └── Internet.php │ │ │ ├── fi_FI │ │ │ └── Internet.php │ │ │ ├── vi_VN │ │ │ └── Internet.php │ │ │ ├── sk_SK │ │ │ ├── PhoneNumber.php │ │ │ └── Internet.php │ │ │ ├── pl_PL │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ │ ├── pt_BR │ │ │ └── Internet.php │ │ │ ├── sl_SI │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ │ ├── PhoneNumber.php │ │ │ ├── en_GB │ │ │ └── Internet.php │ │ │ ├── en_AU │ │ │ └── Internet.php │ │ │ ├── en_UG │ │ │ ├── Internet.php │ │ │ └── PhoneNumber.php │ │ │ ├── es_PE │ │ │ └── PhoneNumber.php │ │ │ ├── es_ES │ │ │ └── Internet.php │ │ │ ├── tr_TR │ │ │ └── Internet.php │ │ │ ├── es_VE │ │ │ └── Internet.php │ │ │ ├── en_NZ │ │ │ └── Internet.php │ │ │ ├── ne_NP │ │ │ └── PhoneNumber.php │ │ │ ├── en_CA │ │ │ └── PhoneNumber.php │ │ │ ├── el_GR │ │ │ └── PhoneNumber.php │ │ │ ├── is_IS │ │ │ └── PhoneNumber.php │ │ │ ├── fr_FR │ │ │ └── Internet.php │ │ │ └── da_DK │ │ │ └── PhoneNumber.php │ │ ├── Makefile │ │ ├── phpunit.xml.dist │ │ └── .travis.yml ├── cebe │ └── markdown │ │ ├── .gitignore │ │ ├── tests │ │ ├── markdown-data │ │ │ ├── md1_nested_blockquotes.md │ │ │ ├── paragraph.md │ │ │ ├── newline.md │ │ │ ├── paragraph.html │ │ │ ├── test_precedence.md │ │ │ ├── newline.html │ │ │ ├── test_precedence.html │ │ │ ├── README │ │ │ ├── md1_tidyness.md │ │ │ ├── blockquote.md │ │ │ ├── utf8-do-not-kill-characters.md │ │ │ ├── md1_nested_blockquotes.html │ │ │ ├── utf8-do-not-kill-characters.html │ │ │ ├── list_and_reference.md │ │ │ ├── md1_literal_quotes_in_titles.md │ │ │ ├── md1_strong_and_em_together.md │ │ │ ├── md1_tidyness.html │ │ │ ├── blockquote.html │ │ │ ├── hr.html │ │ │ ├── list_and_reference.html │ │ │ ├── md1_literal_quotes_in_titles.html │ │ │ ├── md1_blockquotes_with_code_blocks.md │ │ │ ├── md1_inline_html_avanced.html │ │ │ ├── md1_inline_html_avanced.md │ │ │ ├── hr.md │ │ │ ├── md1_inline_html_comments.html │ │ │ ├── md1_links_inline_style.md │ │ │ ├── list-marker-in-paragraph.md │ │ │ ├── md1_inline_html_comments.md │ │ │ ├── md1_strong_and_em_together.html │ │ │ ├── list-marker-in-paragraph.html │ │ │ ├── md1_blockquotes_with_code_blocks.html │ │ │ ├── blockquote-nested.md │ │ │ ├── code.md │ │ │ ├── inline-html.md │ │ │ ├── md1_links_inline_style.html │ │ │ ├── md1_auto_links.md │ │ │ ├── inline-html.html │ │ │ ├── blockquote-nested.html │ │ │ ├── code.html │ │ │ ├── md1_tabs.md │ │ │ ├── headline.html │ │ │ ├── md1_amps_and_angle_encoding.md │ │ │ ├── md1_links_reference_style.md │ │ │ ├── headline.md │ │ │ ├── md1_links_reference_style.html │ │ │ ├── html-block.md │ │ │ ├── md1_amps_and_angle_encoding.html │ │ │ ├── html-block.html │ │ │ └── list.md │ │ ├── github-data │ │ │ ├── lists.md │ │ │ ├── del.md │ │ │ ├── issue-33.md │ │ │ ├── issue-33.html │ │ │ ├── lists.html │ │ │ ├── del.html │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ ├── github-code-in-numbered-list.md │ │ │ ├── github-code-in-numbered-list.html │ │ │ ├── issue-38.md │ │ │ ├── dense-block-markers2.md │ │ │ └── issue-38.html │ │ ├── bootstrap.php │ │ ├── extra-data │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ ├── fenced-code.md │ │ │ └── fenced-code.html │ │ ├── markdown-ol-start-num-data │ │ │ ├── list.md │ │ │ └── list.html │ │ └── MarkdownExtraTest.php │ │ └── .scrutinizer.yml ├── autoload.php ├── composer │ ├── autoload_classmap.php │ ├── autoload_files.php │ └── autoload_namespaces.php └── phpspec │ └── php-diff │ └── composer.json ├── runtime └── .gitignore ├── tests └── codeception │ ├── unit │ ├── fixtures │ │ ├── .gitkeep │ │ └── data │ │ │ └── .gitkeep │ ├── templates │ │ └── fixtures │ │ │ └── .gitkeep │ ├── _bootstrap.php │ └── models │ │ └── UserTest.php │ ├── _output │ └── .gitignore │ ├── fixtures │ └── .gitignore │ ├── templates │ └── .gitignore │ ├── acceptance │ ├── _bootstrap.php │ ├── AboutCept.php │ └── HomeCept.php │ ├── functional │ ├── _bootstrap.php │ ├── AboutCept.php │ └── HomeCept.php │ ├── .gitignore │ ├── unit.suite.yml │ ├── config │ ├── unit.php │ ├── acceptance.php │ └── config.php │ ├── _pages │ └── AboutPage.php │ └── functional.suite.yml ├── web ├── assets │ └── .gitignore ├── robots.txt ├── favicon.ico ├── .htaccess └── index.php ├── .bowerrc ├── config ├── params.php └── db.php ├── temp-image ├── QQ20150123114309.png ├── QQ20150123114431.png ├── QQ20150123161050.png ├── QQ20150123161547.png └── QQ20150123161819.png ├── components ├── AssetBundle.php └── db │ ├── Connection.php │ └── Command.php ├── modules └── v1 │ └── Model.php ├── views └── site │ └── about.php └── .gitignore /vendor/bin/yii: -------------------------------------------------------------------------------- 1 | ../yiisoft/yii2/yii -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/codeception/unit/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.6.0 -------------------------------------------------------------------------------- /web/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /tests/codeception/unit/fixtures/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/markdown: -------------------------------------------------------------------------------- 1 | ../cebe/markdown/bin/markdown -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tests/codeception/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/codeception/unit/templates/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/sizzle/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /tests/codeception/fixtures/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/codeception/templates/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.3.2-DEV 2 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/benchmarks/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/maintenance/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/.gitattributes: -------------------------------------------------------------------------------- 1 | configdoc/usage.xml -crlf 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/PHPT/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/plugins/phorum/.gitignore: -------------------------------------------------------------------------------- 1 | migrate.php 2 | htmlpurifier/* 3 | -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /vendor/cebe/markdown/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | composer.lock 3 | /vendor 4 | README.html 5 | -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 5 | ]; 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /tests/codeception/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "Test Schema" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /temp-image/QQ20150123114309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/temp-image/QQ20150123114309.png -------------------------------------------------------------------------------- /temp-image/QQ20150123114431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/temp-image/QQ20150123114431.png -------------------------------------------------------------------------------- /temp-image/QQ20150123161050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/temp-image/QQ20150123161050.png -------------------------------------------------------------------------------- /temp-image/QQ20150123161547.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/temp-image/QQ20150123161547.png -------------------------------------------------------------------------------- /temp-image/QQ20150123161819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/temp-image/QQ20150123161819.png -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/StringHashParser/Default.txt: -------------------------------------------------------------------------------- 1 | DefaultValue 2 | --# vim: et sw=4 sts=4 3 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/default_load.php: -------------------------------------------------------------------------------- 1 | type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/paragraph.md: -------------------------------------------------------------------------------- 1 | paragraph1 word2 2 | 3 | paragraph2 word2 word3 4 | paragraph2 line2 -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/newline.md: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline 2 | next line 3 | 4 | next par 5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigTest-create.ini: -------------------------------------------------------------------------------- 1 | [Cake] 2 | Sprinkles = 42 3 | 4 | ; vim: et sw=4 sts=4 5 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/acceptance.conf.php 2 | /tests/smoke.conf.php 3 | /build/* 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /tests/codeception/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | paragraph1 word2
2 |paragraph2 word2 word3 3 | paragraph2 line2
4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but two HR: 2 | 3 | *** 4 | --- 5 | 6 | --- 7 | *** 8 | 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/ezyang/htmlpurifier/art/logo.png -------------------------------------------------------------------------------- /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/yiisoft/yii2-debug/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/yiisoft/yii2-debug/assets/bg.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/yiisoft/yii2-gii/assets/logo.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.ttf -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/newline.html: -------------------------------------------------------------------------------- 1 |This is a paragraph with a newline
2 | next line
next par
4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |Not a headline but two HR:
2 |foo
2 |4 |bar
3 |
foo
5 | 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/benchmarks/samples/Lexer/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/ezyang/htmlpurifier/benchmarks/samples/Lexer/4.html -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/inline-list-loop.htmlt: -------------------------------------------------------------------------------- 1 | --HTML-- 2 |hey, check [this].
2 |
3 | [this]: https://github.com/cebe/markdown
4 |
5 | is a vaild reference.
6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.html: -------------------------------------------------------------------------------- 1 |Text before list:
2 |Text after list.
8 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/utf8-do-not-kill-characters.html: -------------------------------------------------------------------------------- 1 |абвгдеёжзийклмнопрстуфхцчшщъыьэюя
2 |there is a charater, 配
3 |Arabic Latter "م (M)"
4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/Type.int.txt: -------------------------------------------------------------------------------- 1 | Type.int 2 | TYPE: int 3 | DEFAULT: 23 4 | DESCRIPTION: The int type is an signed integer. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/disable-uri.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | URI.Disable = true 3 | --HTML-- 4 |this is striked out after
striked out
a line with ~~ in it ...
4 |~~
5 |~
6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/list_and_reference.md: -------------------------------------------------------------------------------- 1 | link [ref1] 2 | 3 | - item 1 [ref2] 4 | - item 2 5 | 6 | [ref1]: http://example.com/a 7 | [ref2]: http://example.com/b 8 | a -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/Type.bool.txt: -------------------------------------------------------------------------------- 1 | Type.bool 2 | TYPE: bool 3 | DEFAULT: false 4 | DESCRIPTION: The boolean type is true or false. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/DefinitionCache/SerializerTest/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiYii/yii2-rest-demo/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/Type.float.txt: -------------------------------------------------------------------------------- 1 | Type.float 2 | TYPE: float 3 | DEFAULT: 3.1415 4 | DESCRIPTION: The float type is a floating point number. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigSchema/Validator/directive/defaultNullWithAllowed.vtest: -------------------------------------------------------------------------------- 1 | Ns.Dir 2 | DESCRIPTION: Directive 3 | TYPE: string/null 4 | DEFAULT: null 5 | ALLOWED: 'a' 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/name.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | Attr.EnableID = true 3 | HTML.Doctype = "XHTML 1.0 Strict" 4 | --HTML-- 5 | 6 | --# vim: et sw=4 sts=4 7 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/trusted-comments-required.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | HTML.Trusted = true 3 | --HTML-- 4 |foo
6 | --# vim: et sw=4 sts=4 7 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/trusted-comments-table.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | HTML.Trusted = true 3 | --HTML-- 4 || Foo |
8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigSchema/Validator/directive/descriptionNotEmpty.vtest: -------------------------------------------------------------------------------- 1 | ERROR: Description in directive 'Ns.Dir' must not be empty 2 | ---- 3 | Ns.Dir 4 | TYPE: int 5 | DEFAULT: 0 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/style-onload.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | Core.CollectErrors = true 3 | --HTML-- 4 |A list within a blockquote:
2 |3 |
7 |- asterisk 1
4 |- asterisk 2
5 |- asterisk 3
6 |