├── console ├── controllers │ └── .gitkeep ├── models │ └── .gitkeep ├── config │ ├── bootstrap.php │ ├── .gitignore │ └── params.php └── runtime │ └── .gitignore ├── backend ├── models │ └── .gitkeep ├── config │ ├── bootstrap.php │ ├── .gitignore │ └── params.php ├── runtime │ └── .gitignore └── web │ ├── assets │ └── .gitignore │ ├── .gitignore │ ├── robots.txt │ └── favicon.ico ├── vendor ├── bin │ ├── yii │ ├── markdown │ ├── phpunit │ └── codecept ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ └── InvalidArgumentException.php ├── ezyang │ └── htmlpurifier │ │ ├── VERSION │ │ ├── maintenance │ │ ├── .htaccess │ │ ├── regenerate-docs.sh │ │ └── merge-library.php │ │ ├── plugins │ │ └── phorum │ │ │ └── .gitignore │ │ └── library │ │ ├── HTMLPurifier │ │ ├── ConfigSchema │ │ │ ├── schema │ │ │ │ ├── info.ini │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ └── CSS.Proprietary.txt │ │ │ └── Exception.php │ │ ├── DefinitionCache │ │ │ └── Serializer │ │ │ │ └── README │ │ ├── Printer │ │ │ └── ConfigForm.js │ │ ├── Token │ │ │ └── Start.php │ │ ├── Language │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ │ └── en-x-test.php │ │ ├── VarParserException.php │ │ └── Exception.php │ │ └── HTMLPurifier.composer.php ├── symfony │ ├── finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── console │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_option_6.txt │ │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ └── output │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ └── output_6.txt │ │ │ │ ├── input_argument_4.txt │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── command_1.txt │ │ │ │ ├── input_option_5.txt │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_argument_4.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_argument_4.json │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── command_1.md │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_argument_4.xml │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ ├── input_option_3.md │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ ├── input_option_4.md │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_option_5.md │ │ │ │ ├── input_option_6.md │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ └── input_option_5.xml │ │ ├── .gitignore │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── dom-crawler │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── no-extension │ │ │ │ └── windows-1250.html │ │ └── .gitignore │ ├── debug │ │ ├── .gitignore │ │ └── Tests │ │ │ ├── Fixtures │ │ │ ├── PEARClass.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── reallyNotPsr0.php │ │ │ ├── casemismatch.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ ├── ClassAlias.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── DeprecatedClass.php │ │ │ └── DeprecatedInterface.php │ │ │ └── Fixtures2 │ │ │ └── RequiredTwice.php │ ├── yaml │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── embededPhp.yml │ │ │ └── arrow.gif │ ├── browser-kit │ │ └── .gitignore │ ├── css-selector │ │ └── .gitignore │ └── event-dispatcher │ │ └── .gitignore ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── resource-operations │ │ └── .gitignore │ ├── environment │ │ └── .gitignore │ ├── comparator │ │ ├── .gitignore │ │ └── tests │ │ │ └── bootstrap.php │ ├── global-state │ │ └── .gitignore │ ├── object-enumerator │ │ └── .gitignore │ ├── code-unit-reverse-lookup │ │ └── .gitignore │ ├── exporter │ │ └── .gitignore │ ├── recursion-context │ │ └── .gitignore │ └── diff │ │ ├── .gitignore │ │ └── tests │ │ └── fixtures │ │ └── patch.txt ├── yiisoft │ ├── yii2 │ │ ├── .htaccess │ │ ├── .gitignore │ │ └── captcha │ │ │ └── SpicyRice.ttf │ ├── yii2-composer │ │ └── .gitignore │ ├── yii2-gii │ │ └── assets │ │ │ └── logo.png │ └── yii2-debug │ │ └── assets │ │ └── arrow.svg ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ └── .gitignore │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── IniTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ └── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ │ │ └── phpt-xfail.phpt │ │ │ ├── TextUI │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ └── phpt-stdin.phpt │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ └── NewException.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ ├── 797 │ │ │ │ │ │ └── bootstrap797.php │ │ │ │ │ ├── 873 │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ ├── 1216 │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ └── Issue1216Test.php │ │ │ │ │ ├── 1265 │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ ├── 1330 │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ ├── 1351 │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ ├── 1437 │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ ├── 1570 │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ └── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ └── Trac │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ └── TwoTest.php │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ └── bootstrap.php │ │ ├── .gitattributes │ │ └── src │ │ │ └── Util │ │ │ └── PHP │ │ │ └── eval-stdin.php │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ └── CoverageNoneTest.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ └── src │ │ │ └── Report │ │ │ └── Html │ │ │ └── Renderer │ │ │ └── Template │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-text-template │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ └── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ └── bootstrap.php │ │ └── .gitignore │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── StringableClass.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ └── SomeClass.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── deprecation.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ └── wsdl_class.tpl.dist │ │ ├── .gitignore │ │ └── CONTRIBUTING.md ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ └── smime │ │ │ │ └── CA.srl │ │ └── StreamCollector.php │ │ ├── .gitignore │ │ ├── doc │ │ └── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── .gitattributes ├── behat │ └── gherkin │ │ ├── libpath.php │ │ ├── tests │ │ └── Behat │ │ │ └── Gherkin │ │ │ ├── Filter │ │ │ └── Fixtures │ │ │ │ ├── full │ │ │ │ └── file2 │ │ │ │ └── full_path │ │ │ │ └── file1 │ │ │ └── Fixtures │ │ │ ├── directories │ │ │ └── phps │ │ │ │ └── some_file.php │ │ │ ├── features │ │ │ ├── empty.feature │ │ │ ├── background.feature │ │ │ ├── pystring.feature │ │ │ ├── clean_tags.feature │ │ │ ├── ja_addition.feature │ │ │ └── ru_commented.feature │ │ │ └── etalons │ │ │ └── empty.yml │ │ └── .gitignore ├── bower │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── document.js │ │ │ │ ├── push.js │ │ │ │ ├── concat.js │ │ │ │ ├── slice.js │ │ │ │ ├── class2type.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── support.js │ │ │ │ └── rcssNum.js │ │ │ ├── selector.js │ │ │ ├── ajax │ │ │ │ └── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ ├── location.js │ │ │ │ │ └── nonce.js │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ └── rnumnonpx.js │ │ │ ├── manipulation │ │ │ │ └── var │ │ │ │ │ ├── rtagName.js │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ └── rscriptType.js │ │ │ ├── data │ │ │ │ └── var │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ ├── core │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ ├── event │ │ │ │ └── support.js │ │ │ └── attributes.js │ │ └── bower.json │ ├── bootstrap │ │ ├── Gemfile │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── dist │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── less │ │ │ └── mixins │ │ │ ├── center-block.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ ├── background-variant.less │ │ │ ├── labels.less │ │ │ ├── resize.less │ │ │ └── progress-bar.less │ ├── jquery.inputmask │ │ └── .gitignore │ ├── typeahead.js │ │ ├── .gitignore │ │ └── src │ │ │ └── bloodhound │ │ │ └── version.js │ └── punycode │ │ └── bower.json ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── src │ │ └── Faker │ │ │ └── Provider │ │ │ ├── de_AT │ │ │ └── Text.php │ │ │ ├── fr_CH │ │ │ └── Text.php │ │ │ └── it_CH │ │ │ └── Text.php │ │ └── Makefile ├── codeception │ └── codeception │ │ ├── tests │ │ ├── data │ │ │ ├── group_1 │ │ │ ├── group_2 │ │ │ ├── group_3 │ │ │ ├── claypit │ │ │ │ ├── src │ │ │ │ │ └── FooBar │ │ │ │ │ │ └── dummy.txt │ │ │ │ ├── tests │ │ │ │ │ ├── _support │ │ │ │ │ │ ├── _generated │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── OtherHelper.php │ │ │ │ │ │ ├── Math │ │ │ │ │ │ │ ├── Adder.php │ │ │ │ │ │ │ └── Subtractor.php │ │ │ │ │ │ ├── CodeHelper.php │ │ │ │ │ │ ├── DumbHelper.php │ │ │ │ │ │ ├── SkipHelper.php │ │ │ │ │ │ └── Step │ │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ └── CanCantSteps.php │ │ │ │ │ ├── _data │ │ │ │ │ │ ├── dump.sql │ │ │ │ │ │ └── groupFileTest1 │ │ │ │ │ ├── unit.suite.yml │ │ │ │ │ ├── order │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ ├── FailedCept.php │ │ │ │ │ │ ├── Dependent2Cest.php │ │ │ │ │ │ ├── AnotherCept.php │ │ │ │ │ │ └── LoadingOrderCept.php │ │ │ │ │ ├── skipped.suite.yml │ │ │ │ │ ├── order.suite.yml │ │ │ │ │ ├── extended │ │ │ │ │ │ ├── HelloCept.php │ │ │ │ │ │ └── _bootstrap.php │ │ │ │ │ ├── math │ │ │ │ │ │ └── _bootstrap.php │ │ │ │ │ ├── powers │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ └── PowerIsRisingCept.php │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ └── DemoCept.php │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ ├── FailingTest.php │ │ │ │ │ │ └── PassingTest.php │ │ │ │ │ ├── messages │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ └── EmailCept.php │ │ │ │ │ ├── skipped │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ ├── SkipMeCept.php │ │ │ │ │ │ ├── IncompleteMeCept.php │ │ │ │ │ │ └── NoEnvironmentCept.php │ │ │ │ │ ├── remote_server │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ └── DemoCept.php │ │ │ │ │ ├── scenario │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ ├── FailedCept.php │ │ │ │ │ │ ├── SubStepsCept.php │ │ │ │ │ │ ├── SuccessCept.php │ │ │ │ │ │ ├── ConditionalCept.php │ │ │ │ │ │ └── subfolder │ │ │ │ │ │ │ └── SubFile.feature │ │ │ │ │ ├── dummy.suite.yml │ │ │ │ │ ├── _envs │ │ │ │ │ │ ├── env2.yml │ │ │ │ │ │ ├── subenv │ │ │ │ │ │ │ └── env3.yml │ │ │ │ │ │ └── env2.dist.yml │ │ │ │ │ ├── dummy │ │ │ │ │ │ └── FileExistsCept.php │ │ │ │ │ ├── scenario.suite.yml │ │ │ │ │ └── math.suite.yml │ │ │ │ └── composer.json │ │ │ ├── included_w │ │ │ │ ├── src │ │ │ │ │ ├── bar │ │ │ │ │ │ ├── Spam │ │ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ ├── _output │ │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ │ │ └── _bootstrap.php │ │ │ │ │ │ │ │ └── unit.suite.yml │ │ │ │ │ │ │ └── codeception.yml │ │ │ │ │ │ ├── SpamPack │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── Sub │ │ │ │ │ │ │ └── EwokPack │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ ├── _log │ │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ │ │ │ └── BasicTest.php │ │ │ │ │ │ │ │ └── unit.suite.yml │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── Ewok.php │ │ │ │ │ │ └── ToastPack │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ ├── _log │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ │ └── _bootstrap.php │ │ │ │ │ │ │ └── unit.suite.yml │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── Toast.php │ │ │ │ │ └── foo │ │ │ │ │ │ └── AcmePack │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── unit │ │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ │ └── BasicTest.php │ │ │ │ │ │ └── unit.suite.yml │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Acme.php │ │ │ │ └── codeception.yml │ │ │ ├── .gitignore │ │ │ ├── Invalid.php │ │ │ ├── params │ │ │ │ ├── params.env │ │ │ │ ├── tests │ │ │ │ │ ├── _support │ │ │ │ │ │ └── _generated │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── dummy │ │ │ │ │ │ └── DummyCept.php │ │ │ │ │ └── dummy.suite.yml │ │ │ │ ├── params.yml │ │ │ │ ├── params.env.example │ │ │ │ ├── codeception.yml │ │ │ │ ├── codeception_dotenv2.yml │ │ │ │ ├── codeception_yaml.yml │ │ │ │ └── codeception_dotenv.yml │ │ │ ├── unsetFile.php │ │ │ ├── register_command │ │ │ │ └── standard │ │ │ │ │ └── tests │ │ │ │ │ ├── _data │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── _log │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── _support │ │ │ │ │ └── .gitkeep │ │ │ ├── included │ │ │ │ ├── jazz │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── _helpers │ │ │ │ │ │ │ └── _generated │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ └── dump.sql │ │ │ │ │ │ └── functional │ │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ │ └── DemoCept.php │ │ │ │ │ ├── pianist │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ │ └── dump.sql │ │ │ │ │ │ │ └── functional │ │ │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ │ │ └── PianistCept.php │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── BillEvans.php │ │ │ │ │ └── src │ │ │ │ │ │ └── Musician.php │ │ │ │ ├── shire │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── _helpers │ │ │ │ │ │ │ └── _generated │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── _data │ │ │ │ │ │ │ └── dump.sql │ │ │ │ │ │ └── functional │ │ │ │ │ │ │ ├── _bootstrap.php │ │ │ │ │ │ │ └── HobbitCept.php │ │ │ │ │ └── src │ │ │ │ │ │ └── Hobbit.php │ │ │ │ └── codeception.yml │ │ │ ├── test_groups │ │ │ ├── dump.sql │ │ │ ├── whitespace_group_test │ │ │ ├── SimpleCept.php │ │ │ ├── app │ │ │ │ ├── view │ │ │ │ │ ├── external_url.php │ │ │ │ │ ├── form │ │ │ │ │ │ ├── bug1598.php │ │ │ │ │ │ ├── button-not-in-form.php │ │ │ │ │ │ ├── bug2921.php │ │ │ │ │ │ ├── example7.php │ │ │ │ │ │ ├── example3.php │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── div_content_editable.php │ │ │ │ │ │ ├── image.php │ │ │ │ │ │ ├── multiple_matches.php │ │ │ │ │ │ └── hidden.php │ │ │ │ │ ├── content_type.php │ │ │ │ │ ├── cookies.php │ │ │ │ │ ├── redirect_meta_refresh.php │ │ │ │ │ ├── redirect2.php │ │ │ │ │ ├── content_type2.php │ │ │ │ │ ├── redirect_interval.php │ │ │ │ │ └── redirect_params.php │ │ │ │ └── .htaccess │ │ │ ├── SimpleTest.php │ │ │ ├── FailDependenciesNonExistent.php │ │ │ ├── SimpleAdminGroupCest.php │ │ │ └── xml │ │ │ │ └── layout.xml │ │ ├── log │ │ │ └── .gitignore │ │ ├── coverage │ │ │ └── _bootstrap.php │ │ ├── coverage.suite.yml │ │ ├── facebook.suite.yml │ │ ├── support │ │ │ ├── Helper │ │ │ │ ├── Hobbit.php │ │ │ │ └── Angular.php │ │ │ ├── CoverHelper.php │ │ │ ├── WebHelper.php │ │ │ ├── CodeHelper.php │ │ │ └── TestHelper.php │ │ ├── cli │ │ │ ├── _bootstrap.php │ │ │ └── GenerateCestCept.php │ │ ├── cli.suite.yml │ │ ├── web │ │ │ └── _bootstrap.php │ │ ├── unit.suite.yml │ │ └── angular.suite.yml │ │ ├── nitpick.json │ │ ├── src │ │ └── Codeception │ │ │ ├── Lib │ │ │ ├── Interfaces │ │ │ │ ├── ORM.php │ │ │ │ ├── API.php │ │ │ │ └── DoctrineProvider.php │ │ │ └── README.md │ │ │ ├── PHPUnit │ │ │ ├── ResultPrinter │ │ │ │ └── template │ │ │ │ │ ├── scenario_header.html.dist │ │ │ │ │ ├── suite.html.dist │ │ │ │ │ ├── fail.html.dist │ │ │ │ │ └── step.html.dist │ │ │ └── README.md │ │ │ ├── Exception │ │ │ ├── ParseException.php │ │ │ ├── InjectionException.php │ │ │ ├── Skip.php │ │ │ ├── Fail.php │ │ │ ├── ConfigurationException.php │ │ │ ├── ConnectionException.php │ │ │ ├── ExternalUrlException.php │ │ │ ├── TestRuntimeException.php │ │ │ ├── Incomplete.php │ │ │ ├── ContentNotFound.php │ │ │ └── ConditionalAssertionFailed.php │ │ │ ├── Step │ │ │ ├── Action.php │ │ │ ├── Assertion.php │ │ │ ├── Condition.php │ │ │ └── README.md │ │ │ ├── Test │ │ │ └── Interfaces │ │ │ │ ├── Dependent.php │ │ │ │ ├── Plain.php │ │ │ │ └── StrictCoverage.php │ │ │ └── Subscriber │ │ │ └── Shared │ │ │ └── StaticEvents.php │ │ └── package │ │ └── stub.php ├── webmozart │ └── assert │ │ ├── .gitignore │ │ └── .styleci.yml ├── workerman │ ├── _Users_mfhj-dz-001-331_www_yii2-layim_yii.pid │ ├── gateway-worker │ │ └── .gitignore │ └── workerman │ │ └── .gitignore ├── phpdocumentor │ ├── reflection-common │ │ ├── README.md │ │ └── .gitignore │ ├── reflection-docblock │ │ └── .gitignore │ └── type-resolver │ │ └── .gitignore ├── 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 │ │ │ ├── empty-line.md │ │ │ ├── utf8-do-not-kill-characters.md │ │ │ ├── md1_nested_blockquotes.html │ │ │ ├── utf8-do-not-kill-characters.html │ │ │ ├── empty-line.html │ │ │ ├── md1_literal_quotes_in_titles.md │ │ │ ├── md1_strong_and_em_together.md │ │ │ ├── md1_tidyness.html │ │ │ ├── blockquote.html │ │ │ ├── hr.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 │ │ │ ├── list_and_reference.md │ │ │ ├── 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 │ │ ├── github-data │ │ │ ├── del.md │ │ │ ├── issue-33.md │ │ │ ├── issue-33.html │ │ │ ├── del.html │ │ │ ├── lists.md │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ └── github-code-in-numbered-list.md │ │ ├── bootstrap.php │ │ └── extra-data │ │ │ ├── test_precedence.html │ │ │ └── test_precedence.md │ │ └── .scrutinizer.yml ├── phpspec │ └── prophecy │ │ ├── .gitignore │ │ └── fixtures │ │ ├── EmptyClass.php │ │ ├── FinalClass.php │ │ ├── EmptyInterface.php │ │ ├── Named.php │ │ ├── WithStaticMethod.php │ │ ├── WithFinalMethod.php │ │ ├── WithProtectedAbstractMethod.php │ │ ├── WithVariadicArgument.php │ │ ├── ModifierInterface.php │ │ ├── WithReferences.php │ │ ├── WithTypehintedVariadicArgument.php │ │ └── WithCallableArgument.php ├── doctrine │ └── instantiator │ │ └── .gitignore ├── myclabs │ └── deep-copy │ │ ├── .gitignore │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-copy.png │ │ └── deep-clone.png │ │ ├── src │ │ └── DeepCopy │ │ │ └── Exception │ │ │ └── CloneException.php │ │ └── .gitattributes ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Exception │ │ │ ├── GuzzleException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── ClientException.php │ │ │ ├── ServerException.php │ │ │ └── BadResponseException.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── tests │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── src │ │ │ ├── functions_include.php │ │ │ └── CancellationException.php │ │ └── Makefile │ └── psr7 │ │ ├── .gitignore │ │ ├── src │ │ └── functions_include.php │ │ └── tests │ │ └── bootstrap.php ├── facebook │ └── webdriver │ │ └── lib │ │ └── Exception │ │ ├── NoStringException.php │ │ ├── NoCollectionException.php │ │ └── IndexOutOfBoundsException.php └── autoload.php ├── frontend ├── config │ ├── bootstrap.php │ ├── .gitignore │ └── params.php ├── runtime │ └── .gitignore └── web │ ├── assets │ └── .gitignore │ ├── robots.txt │ ├── .gitignore │ └── favicon.ico ├── tests ├── codeception │ ├── backend │ │ ├── unit │ │ │ ├── fixtures │ │ │ │ └── data │ │ │ │ │ └── .gitkeep │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── _output │ │ │ └── .gitignore │ │ ├── acceptance │ │ │ └── _bootstrap.php │ │ ├── functional │ │ │ └── _bootstrap.php │ │ ├── .gitignore │ │ └── unit.suite.yml │ ├── console │ │ ├── unit │ │ │ ├── fixtures │ │ │ │ └── data │ │ │ │ │ └── .gitkeep │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── _output │ │ │ └── .gitignore │ │ ├── .gitignore │ │ └── unit.suite.yml │ ├── _output │ │ └── .gitignore │ ├── config │ │ ├── .gitignore │ │ ├── backend │ │ │ └── config.php │ │ ├── frontend │ │ │ └── config.php │ │ ├── unit.php │ │ └── acceptance.php │ ├── common │ │ ├── _output │ │ │ └── .gitignore │ │ ├── unit │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── .gitignore │ │ └── unit.suite.yml │ └── frontend │ │ ├── _output │ │ └── .gitignore │ │ ├── unit │ │ ├── _bootstrap.php │ │ ├── TestCase.php │ │ └── DbTestCase.php │ │ ├── acceptance │ │ └── _bootstrap.php │ │ ├── functional │ │ └── _bootstrap.php │ │ ├── .gitignore │ │ └── unit.suite.yml └── codeception.yml ├── common └── config │ ├── .gitignore │ ├── params.php │ ├── main.php │ └── bootstrap.php ├── vagrant ├── config │ └── .gitignore └── nginx │ └── log │ └── .gitignore ├── environments ├── dev │ ├── backend │ │ └── config │ │ │ └── params-local.php │ ├── common │ │ └── config │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── params-local.php │ │ │ └── main-local.php │ └── frontend │ │ └── config │ │ └── params-local.php └── prod │ ├── common │ └── config │ │ └── params-local.php │ ├── console │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── backend │ └── config │ │ └── params-local.php │ └── frontend │ └── config │ └── params-local.php └── .gitignore /console/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /console/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /vendor/bin/yii: -------------------------------------------------------------------------------- 1 | ../yiisoft/yii2/yii -------------------------------------------------------------------------------- /backend/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.4 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/config/.gitignore: -------------------------------------------------------------------------------- 1 | main-local.php 2 | params-local.php -------------------------------------------------------------------------------- /console/config/.gitignore: -------------------------------------------------------------------------------- 1 | main-local.php 2 | params-local.php -------------------------------------------------------------------------------- /frontend/config/.gitignore: -------------------------------------------------------------------------------- 1 | main-local.php 2 | params-local.php -------------------------------------------------------------------------------- /vendor/behat/gherkin/libpath.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/workerman/_Users_mfhj-dz-001-331_www_yii2-layim_yii.pid: -------------------------------------------------------------------------------- 1 | 2676 -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Filter/Fixtures/full_path/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/src/FooBar/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-composer/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | 4 | -------------------------------------------------------------------------------- /environments/dev/backend/config/params-local.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | composer.lock 3 | /vendor 4 | README.html 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Sub/EwokPack/tests/_log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/ToastPack/tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/ToastPack/tests/_log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/foo/AcmePack/tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/register_command/standard/tests/_support/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/workerman/gateway-worker/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings 4 | .idea -------------------------------------------------------------------------------- /vendor/workerman/workerman/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | .idea -------------------------------------------------------------------------------- /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/codeception/codeception/tests/data/claypit/tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Sub/EwokPack/tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/params/tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /console/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /frontend/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/empty.feature: -------------------------------------------------------------------------------- 1 | Feature: Some feature 2 | # -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/tests/_helpers/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/shire/tests/_helpers/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Spam/tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /backend/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/backend/web/favicon.ico -------------------------------------------------------------------------------- /frontend/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/frontend/web/favicon.ico -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/params/params.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | KEY1: val1 3 | KEY2: val2 -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/whitespace_group_test: -------------------------------------------------------------------------------- 1 | 2 | 3 | tests/WhitespaceTest.php 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_nested_blockquotes.md: -------------------------------------------------------------------------------- 1 | > foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Sub/EwokPack/tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover 6 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/* 3 | 4 | vendor/* 5 | composer.phar 6 | composer.lock 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | type pairs 4 | return {}; 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/newline.md: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline 2 | next line 3 | 4 | next par 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2158/constant.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /vagrant/nginx/log/.gitignore: -------------------------------------------------------------------------------- 1 | # nginx logs 2 | backend-access.log 3 | backend-error.log 4 | frontend-access.log 5 | frontend-error.log -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/dataUser.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/bower/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_data/groupFileTest1: -------------------------------------------------------------------------------- 1 | tests/scenario/ExamplesCest.php:filesExistsAnnotation -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: CodeGuy 2 | modules: 3 | enabled: [CodeHelper] -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/EmptyClass.php: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/paragraph.html: -------------------------------------------------------------------------------- 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/codeception/codeception/tests/coverage/_bootstrap.php: -------------------------------------------------------------------------------- 1 | wantTo('drink beer, actually...'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/order/_bootstrap.php: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline
2 | next line

3 |

next par

4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but two HR:

2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "codeception/c3": "@dev" 4 | } 5 | } -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/order.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: OrderGuy 2 | modules: 3 | enabled: [OrderHelper] 4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/pianist/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.ttf -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/coverage.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: CoverGuy 2 | modules: 3 | enabled: [Filesystem, Cli, CliHelper, CoverHelper] -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/foo/AcmePack/src/Acme.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /tests/codeception/config/unit.php: -------------------------------------------------------------------------------- 1 | comment('hello world'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/math/_bootstrap.php: -------------------------------------------------------------------------------- 1 | A list within a blockquote: 2 | > 3 | > * asterisk 1 4 | > * asterisk 2 5 | > * asterisk 3 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/nitpick.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": [ 3 | "tests/*", 4 | "RoboFile.php", 5 | "shim.php" 6 | ] 7 | } -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt: -------------------------------------------------------------------------------- 1 | 2 | First title 3 | =========== 4 | 5 | Second title 6 | ============ 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_4.txt: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php: -------------------------------------------------------------------------------- 1 | {name} {status} ({time}s) 2 | 3 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter/template/suite.html.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 |

{suite} Tests

4 | 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/cli/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Next 4 | 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/bug1598.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 12,345 5 |
6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/remote_server/_bootstrap.php: -------------------------------------------------------------------------------- 1 | wantTo('skip it'); 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Spam/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: UnitTester 2 | modules: 3 | enabled: 4 | - Asserts -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/Named.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | (?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/blockquote.md: -------------------------------------------------------------------------------- 1 | > test test 2 | > test 3 | 4 | > test 5 | test 6 | test 7 | 8 | test 9 | 10 | >this is not a quote -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/empty-line.md: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | 0 4 | Lorem ipsum dolor 5 | 6 | Lorem ipsum dolor 7 | 0 8 | 9 | code 10 | 0 11 | 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/utf8-do-not-kill-characters.md: -------------------------------------------------------------------------------- 1 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя 2 | 3 | there is a charater, 配 4 | 5 | Arabic Latter "م (M)" -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter/template/fail.html.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | {fail} 4 | 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/extended/_bootstrap.php: -------------------------------------------------------------------------------- 1 | seePathIsSet(); 4 | $I->seeVarsAreSet(); -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 |

foo

2 |

bar

3 |
4 |

foo

5 | 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/dummy.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: DumbGuy 2 | modules: 3 | enabled: [Filesystem, DumbHelper] 4 | env: 5 | dev: [] -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/remote/DemoCept.php: -------------------------------------------------------------------------------- 1 | amOnPage('/'); 4 | $I->see('Welcome to test app'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/support/CoverHelper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/button-not-in-form.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | ['gii'], 4 | 'modules' => [ 5 | 'gii' => 'yii\gii\Module', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | group :development, :test do 4 | gem 'jekyll', '~> 3.1.2' 5 | gem 'jekyll-sitemap', '~> 0.11.0' 6 | end 7 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Exception/ParseException.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/issue-33.html: -------------------------------------------------------------------------------- 1 |
hey, check [this].
2 | 
3 | [this]: https://github.com/cebe/markdown
4 | 
5 |

is a vaild reference.

6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/utf8-do-not-kill-characters.html: -------------------------------------------------------------------------------- 1 |

абвгдеёжзийклмнопрстуфхцчшщъыьэюя

2 |

there is a charater, 配

3 |

Arabic Latter "م (M)"

4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_envs/subenv/env3.yml: -------------------------------------------------------------------------------- 1 | modules: 2 | config: 3 | MessageHelper: 4 | message2: MESSAGE2 FROM ENV3. 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_support/OtherHelper.php: -------------------------------------------------------------------------------- 1 | wantTo('reveal my power'); 4 | $I->gotThePower(); 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/codeception.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - jazz 3 | - jazz/pianist 4 | - shire 5 | paths: 6 | log: "_log" 7 | settings: 8 | colors: false -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/codeception.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - src/*/*Pack 3 | - src/*/*/*Pack 4 | paths: 5 | log: "_log" 6 | settings: 7 | colors: false 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/ToastPack/tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | this is striked out after

2 |

striked out

3 |

a line with ~~ in it ...

4 |

~~

5 |

~

6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/empty-line.html: -------------------------------------------------------------------------------- 1 |

0

2 |

0 3 | Lorem ipsum dolor

4 |

Lorem ipsum dolor 5 | 0

6 |
code
7 | 
8 |

0

9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Exception/InjectionException.php: -------------------------------------------------------------------------------- 1 | 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /common/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | 'supportEmail' => 'support@example.com', 5 | 'user.passwordResetTokenExpire' => 3600, 6 | ]; 7 | -------------------------------------------------------------------------------- /tests/codeception/frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # these files are auto generated by codeception build 2 | /unit/UnitTester.php 3 | /functional/FunctionalTester.php 4 | /acceptance/AcceptanceTester.php 5 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Exception/Fail.php: -------------------------------------------------------------------------------- 1 | wantTo('Test emails'); 5 | $I->expect('emails are sent'); -------------------------------------------------------------------------------- /vendor/facebook/webdriver/lib/Exception/NoCollectionException.php: -------------------------------------------------------------------------------- 1 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/etalons/empty.yml: -------------------------------------------------------------------------------- 1 | feature: 2 | title: Some feature 3 | language: en 4 | line: 1 5 | description: ~ 6 | 7 | scenarios: [] 8 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusin = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_literal_quotes_in_titles.md: -------------------------------------------------------------------------------- 1 | Foo [bar][]. 2 | 3 | Foo [bar](/url/ "Title with "quotes" inside"). 4 | 5 | 6 | [bar]: /url/ "Title with "quotes" inside" 7 | 8 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_strong_and_em_together.md: -------------------------------------------------------------------------------- 1 | ***This is strong and em.*** 2 | 3 | So is ***this*** word. 4 | 5 | ___This is strong and em.___ 6 | 7 | So is ___this___ word. 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Exception/Incomplete.php: -------------------------------------------------------------------------------- 1 | 2 |     {action} 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/skipped/IncompleteMeCept.php: -------------------------------------------------------------------------------- 1 | wantTo('make it incomplete'); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/skipped/NoEnvironmentCept.php: -------------------------------------------------------------------------------- 1 | wantTo('run something'); 5 | $I->expect('it will work'); -------------------------------------------------------------------------------- /vendor/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery.inputmask/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test.html 3 | jquery-1.10.2.js 4 | dist/jQuery.InputMask.*.nupkg 5 | node_modules/ 6 | bower_components/ 7 | npm-debug.log 8 | .idea/ 9 | *.iml 10 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Lib/Interfaces/API.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

ANSI

5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/params/codeception.yml: -------------------------------------------------------------------------------- 1 | actor: Tester 2 | paths: 3 | tests: tests 4 | log: . 5 | data: . 6 | support: tests/_support 7 | params: 8 | - environment 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.php: -------------------------------------------------------------------------------- 1 |

A list within a blockquote:

2 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Exception/ContentNotFound.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MockTestInterface.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/pystring.feature: -------------------------------------------------------------------------------- 1 | Feature: A py string feature 2 | 3 | Scenario: 4 | Then I should see 5 | """ 6 | a string with #something 7 | """ 8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but a code block:

2 |
---
3 | 
4 |

Not a headline but two HR:

5 |
6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but a code block: 2 | 3 | ``` 4 | --- 5 | ``` 6 | 7 | Not a headline but two HR: 8 | 9 | *** 10 | --- 11 | 12 | --- 13 | *** 14 | 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.md: -------------------------------------------------------------------------------- 1 | Text before list: 2 | * item 1, 3 | * item 2, 4 | * item 3. 5 | 6 | Text after list. 7 | 8 | - test 9 | - test 10 | - test 11 | - test 12 | - test 13 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but a code block:

2 |
---
3 | 
4 |

Not a headline but two HR:

5 |
6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but a code block: 2 | 3 | ``` 4 | --- 5 | ``` 6 | 7 | Not a headline but two HR: 8 | 9 | *** 10 | --- 11 | 12 | --- 13 | *** 14 | 15 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/cookies.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | " . print_r($_COOKIE, 1) . ""; 4 | ?> 5 |

Cookies.php View

6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/remote_server/DemoCept.php: -------------------------------------------------------------------------------- 1 | wantTo('show message'); 4 | $I->amOnPage('/'); 5 | $I->see('Welcome to test app'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/params/tests/dummy.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: DummyTester 2 | modules: 3 | enabled: 4 | - \Helper\Dummy: 5 | vars: [%KEY1%, %KEY2%] 6 | path: %PATH% -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.phar 3 | composer.lock 4 | composer-test.lock 5 | vendor/ 6 | build/artifacts/ 7 | artifacts/ 8 | docs/_build 9 | docs/*.pyc 10 | .idea 11 | .DS_STORE 12 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithStaticMethod.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 6 | } 7 | 8 | } -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/dummy/FileExistsCept.php: -------------------------------------------------------------------------------- 1 | wantTo('check config exists'); 6 | $I->seeFileFound($codeception); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/scenario.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: ScenarioGuy 2 | modules: 3 | enabled: [Filesystem, \Helper\Scenario] 4 | gherkin: 5 | contexts: 6 | default: [ScenarioGuy] -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/scenario/FailedCept.php: -------------------------------------------------------------------------------- 1 | wantTo('fail when file is not found'); 4 | $I->amInPath('.'); 5 | $I->seeFileFound('games.zip'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/params/codeception_dotenv2.yml: -------------------------------------------------------------------------------- 1 | actor: Tester 2 | paths: 3 | tests: tests 4 | log: . 5 | data: . 6 | support: tests/_support 7 | params: 8 | - params.env.example 9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/support/WebHelper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Meta redirect

7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/support/CodeHelper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Buy Chocolate Bar 4 | 5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/scenario/SubStepsCept.php: -------------------------------------------------------------------------------- 1 | wantTo('run scenario substeps'); 4 | $I->amInPath('.'); 5 | $I->seeCodeCoverageFilesArePresent(); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/tests/functional/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /tests/codeception.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - codeception/common 3 | - codeception/console 4 | - codeception/backend 5 | - codeception/frontend 6 | 7 | paths: 8 | log: codeception/_output 9 | 10 | settings: 11 | colors: true 12 | -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | 4 | .grunt 5 | _SpecRunner.html 6 | test/coverage 7 | 8 | dist_temp 9 | 10 | node_modules 11 | npm-debug.log 12 | 13 | bower_components 14 | 15 | *.iml 16 | .idea 17 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/blockquote.html: -------------------------------------------------------------------------------- 1 |

test test 2 | test

3 |
4 |

test 5 | test 6 | test

7 |
8 |

test

9 |

>this is not a quote

10 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/example3.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/redirect2.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Redirecting...

7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/src/Musician.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo5Command.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |

**

11 |

--

12 |

––

13 |

*

14 |

-

15 |

16 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_literal_quotes_in_titles.html: -------------------------------------------------------------------------------- 1 |

Foo bar.

2 |

Foo bar.

3 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/SimpleAdminGroupCest.php: -------------------------------------------------------------------------------- 1 | wantTo('check that suite config is available'); 4 | $I->amInPath('.'); 5 | $I->seeFileFound('scenario.suite.yml'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/pianist/tests/functional/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/support/TestHelper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

CP1251

5 |

6 | 7 |

8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_support/CodeHelper.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /common/config/main.php: -------------------------------------------------------------------------------- 1 | dirname(dirname(__DIR__)) . '/vendor', 4 | 'components' => [ 5 | 'cache' => [ 6 | 'class' => 'yii\caching\FileCache', 7 | ], 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit/DbTestCase.php: -------------------------------------------------------------------------------- 1 | wantTo('check that hobbits can add numbers'); 5 | $I->seeEquals(5, Shire\Hobbit::add(2, 3)); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/ToastPack/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | # 3 | # Suite for unit (internal) tests. 4 | 5 | class_name: UnitTester 6 | modules: 7 | enabled: 8 | - Asserts -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithReferences.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-for-coverage.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT for testing coverage 3 | --FILE-- 4 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Step/README.md: -------------------------------------------------------------------------------- 1 | # Steps 2 | 3 | Steps are used in scenarios. They do not keep any logic, but responsible for formatting. Exception for `ConditionalAssertion` which acts like `Assertion` but acts differently on fail. -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/unit/FailingTest.php: -------------------------------------------------------------------------------- 1 | assertFalse(true); 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included/jazz/tests/functional/DemoCept.php: -------------------------------------------------------------------------------- 1 | wantTo('check that jazz musicians can add numbers'); 5 | $I->seeEquals(10, Jazz\Musician::add(3, 7)); 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/bar/Sub/EwokPack/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | # 3 | # Suite for unit (internal) tests. 4 | 5 | class_name: UnitTester 6 | modules: 7 | enabled: 8 | - Asserts -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/foo/AcmePack/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | # 3 | # Suite for unit (internal) tests. 4 | 5 | class_name: UnitTester 6 | modules: 7 | enabled: 8 | - Asserts 9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | error_level: "E_ALL | E_STRICT" 5 | class_name: CodeGuy 6 | modules: 7 | enabled: [CodeHelper, EmulateModuleHelper] 8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | 0 && $argv[1] == 'help') { 8 | echo 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.md: -------------------------------------------------------------------------------- 1 | descriptor:command1 2 | ------------------- 3 | 4 | * Description: command 1 description 5 | * Usage: 6 | 7 | * `descriptor:command1` 8 | * `alias1` 9 | * `alias2` 10 | 11 | command 1 help 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: 9 | * Default: `false` 10 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/github-code-in-numbered-list.md: -------------------------------------------------------------------------------- 1 | 1. Item one. 2 | 2. Item two with some code: 3 | 4 | ``` 5 | code one 6 | ``` 7 | 8 | 3. Item three with code: 9 | 10 | ``` 11 | code two 12 | ``` 13 | 14 | Paragraph. -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_blockquotes_with_code_blocks.md: -------------------------------------------------------------------------------- 1 | > Example: 2 | > 3 | > sub status { 4 | > print "working"; 5 | > } 6 | > 7 | > Or: 8 | > 9 | > sub status { 10 | > return "working"; 11 | > } 12 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/PHPUnit/README.md: -------------------------------------------------------------------------------- 1 | # PHPUnit Overrides 2 | 3 | Codeception heavily relies on PHPUnit for running and managing tests. 4 | Not all PHPUnit classes fit the needs of Codeception, that's why they were extended or redefined. -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/redirect_interval.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Redirecting in 1800 seconds

7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/scenario/ConditionalCept.php: -------------------------------------------------------------------------------- 1 | amInPath('.'); 4 | $I->canSeeFileFound('not-a-file'); 5 | $I->canSeeFileFound('not-a-dir'); 6 | $I->canSeeFileFound('nothing'); 7 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/unit/PassingTest.php: -------------------------------------------------------------------------------- 1 | assertFalse(false); 9 | } 10 | 11 | } -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/fixtures/WithCallableArgument.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | multiline 4 | argument description 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_avanced.html: -------------------------------------------------------------------------------- 1 |

Simple block on one line:

2 |
foo
3 |

And nested without indentation:

4 |
5 |
6 |
7 | foo 8 |
9 |
10 |
bar
11 |
12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_avanced.md: -------------------------------------------------------------------------------- 1 | Simple block on one line: 2 | 3 |
foo
4 | 5 | And nested without indentation: 6 | 7 |
8 |
9 |
10 | foo 11 |
12 |
13 |
bar
14 |
15 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-stdin.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports STDIN section 3 | --STDIN-- 4 | Hello World 5 | --FILE-- 6 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/clean_tags.feature: -------------------------------------------------------------------------------- 1 | Feature: Feature N4 2 | 3 | @normal 4 | Scenario: 5 | Given Some normal step N41 6 | And Some fast step N42 7 | 8 | @fast 9 | Scenario: 10 | Given Some slow step N43 11 | -------------------------------------------------------------------------------- /vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/ja_addition.feature: -------------------------------------------------------------------------------- 1 | # language: ja 2 | フィーチャ: 加算 3 | バカな間違いを避けるために 4 | 数学オンチとして 5 | 2つの数の合計を知りたい 6 | 7 | シナリオ: 2つの数の加算について 8 | 前提 50 を入力 9 | かつ 70 を入力 10 | もし add ボタンを押した 11 | ならば結果は 120 を表示 -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_comments.html: -------------------------------------------------------------------------------- 1 |

Paragraph one.

2 | 3 | 6 |

Paragraph two.

7 | 8 |

The end.

9 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/angular.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: AngularGuy 2 | bootstrap: false 3 | modules: 4 | enabled: 5 | - AngularJS: 6 | url: http://davertmik.github.io/angular-demo-app 7 | browser: firefox 8 | - \Helper\Angular -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/button.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/div_content_editable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
sunrise
5 | 6 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/form/image.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/math.suite.yml: -------------------------------------------------------------------------------- 1 | class_name: MathTester 2 | modules: 3 | enabled: [Asserts] 4 | coverage: 5 | enabled: true 6 | include: 7 | - 'tests/_support/Math/Adder.php' 8 | - 'tests/_support/Math/Substractor.php' -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/order/FailedCept.php: -------------------------------------------------------------------------------- 1 | wantTo('write a marker and fail'); 6 | $I->appendToFile('T'); 7 | $I->failNow(); -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Clickable 6 | 7 |
Press Me!
8 | Press Me! 9 | 10 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/app/view/redirect_params.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Redirecting...

7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/order/Dependent2Cest.php: -------------------------------------------------------------------------------- 1 | wantTo('check that jazz pianists can add numbers'); 5 | $I->seeEquals(15, Jazz\Pianist\BillEvans::add(7, 8)); 6 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/CancellationException.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | doSomething(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabercoding/yii2-layim/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt: -------------------------------------------------------------------------------- 1 | 2 | * Lorem ipsum dolor sit amet 3 | * consectetur adipiscing elit 4 | 5 | [OK] Lorem ipsum dolor sit amet 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": false, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "", 8 | "default": false 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `'default_value'` 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/_support/Step/Order/CanCantSteps.php: -------------------------------------------------------------------------------- 1 | wantTo('write a marker to file to determine loading order'); 6 | $I->appendToFile('T'); -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/included_w/src/foo/AcmePack/tests/unit/BasicTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options: 2 | 3 | **option_name:** 4 | 5 | * Name: `--option_name` 6 | * Shortcut: `-o` 7 | * Accept value: no 8 | * Is value required: no 9 | * Is multiple: no 10 | * Description: 11 | * Default: `false` 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: multiline 9 | option description 10 | * Default: `NULL` 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_6.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o|-O` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option with multiple shortcuts 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /tests/codeception/common/unit/DbTestCase.php: -------------------------------------------------------------------------------- 1 | .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /vendor/bower/punycode/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "punycode", 3 | "version": "1.3.2", 4 | "main": "punycode.js", 5 | "ignore": [ 6 | "coverage", 7 | "tests", 8 | ".*", 9 | "component.json", 10 | "Gruntfile.js", 11 | "node_modules", 12 | "package.json" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_comments.md: -------------------------------------------------------------------------------- 1 | Paragraph one. 2 | 3 | 4 | 5 | 8 | 9 | Paragraph two. 10 | 11 | 12 | 13 | The end. 14 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/support/Helper/Angular.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /common/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | This is strong and em.

2 |

So is this word.

3 |

This is strong and em.

4 |

So is this word.

5 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/order/LoadingOrderCept.php: -------------------------------------------------------------------------------- 1 | wantTo('write a marker to file to determine loading order'); 6 | $I->appendToFile('T'); 7 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | In Markdown 1.0.0 and earlier. Version 2 | 8. This line turns into a list item. 3 | Because a hard-wrapped line in the 4 | middle of a paragraph looked like a 5 | list item.

6 |

Here's one with a bullet. 7 | * criminey

8 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/cli/GenerateCestCept.php: -------------------------------------------------------------------------------- 1 | wantTo('generate sample Cest'); 4 | $I->amInPath('tests/data/sandbox'); 5 | $I->executeCommand('generate:cest dummy DummyClass'); 6 | $I->seeFileWithGeneratedClass('DummyClass'); 7 | -------------------------------------------------------------------------------- /vendor/codeception/codeception/tests/data/claypit/tests/scenario/subfolder/SubFile.feature: -------------------------------------------------------------------------------- 1 | Feature: Run gherkin 2 | In order to test a feature 3 | As a user 4 | I need to be able to have subfolders 5 | 6 | Scenario: Describe a feature in subfolder 7 | Given I have a feature in a subfolder 8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Language/messages/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- 1 | vendor/autoload.php: 2 | composer install --no-interaction --prefer-source 3 | 4 | .PHONY: sniff 5 | sniff: vendor/autoload.php 6 | vendor/bin/phpcs --standard=PSR2 src -n 7 | 8 | .PHONY: test 9 | test: vendor/autoload.php 10 | vendor/bin/phpunit --verbose 11 | --------------------------------------------------------------------------------